Thank you
Please note this
calculated column made in report page
Not in the application
May
About code guide
Code: Select all
ASC
{Customers.CustomerID2}
Thank you
Code: Select all
ASC
{Customers.CustomerID2}
Code: Select all
StiReport report = new StiReport();
report.Load(@"D:\Report.mrt");
Stimulsoft.Report.Components.StiDataBand band = report.GetComponents()["DataProducts"] as Stimulsoft.Report.Components.StiDataBand;
band.Sort = new string[2] { "DESC", "{Products.Column}" };
report.Compile();
report.Show();
Code: Select all
ASC
{Customers.CustomerID2}