Can you help me use the Totals.Rank function? I have this syntax {Totals.Rank(Data, Details.Exp_ytd_units__funded_)}
my data band (Data) is ordered by the field I'm ranking (Details.Exp_ytd_units_funded_) in desc.
I need to reverse the order of the ranking. Here is an example of what I currently get
YTD.............. Rank
$100,000............. 5
$75,000...............4
$50,000 ..............3
$25,000 ..............2
$5,000 ...............1
And I need the results look like this
YTD Rank
$100,000...............1
$75,000...............2
$50,000...............3
$25,000............... 4
$5,000................ 5
Thank you!
Help using Totals.Rank
Re: Help using Totals.Rank
Hello,
Please try to use the following expression:
Thank you.
Please try to use the following expression:
Code: Select all
{Totals.Rank(DataSourceName,DataSourceName.ColumnName,false,Stimulsoft.Report.StiRankOrder.Desc)}
Re: Help using Totals.Rank
Perfect! Exactly what I needed.
Thank you!
Thank you!
Re: Help using Totals.Rank
Hello
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.