Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is it possible to break the grouping of rank like instead of 8-15 result should be like 8,9,10 and so on, even if the field(sales) on which rank calculation is done has same values like in this case '0'.
RANK(TOTAL Sum({<id={'a','e'},year={"$(=max(year))"}>} (sales)))
Hello,
You can achieve this with the following expression:
Num(RANK(TOTAL Sum({<id={'a','e'},year={"$(=max(year))"}>} (sales)), 4))
Hope it helps!