Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
how do I not consider selections month and year in the formula below, using Set Analysis? Thank you.
=num(if( Aggr(Rank(Sum(Value)),Year,Month) <= 3, sum(Value)) / 100,'#.##0M')
Hi,
it is possible to disregard selections made by user with this syntax:
=num(if(Aggr(Sum(Value)), Year, Month) <= 3, sum({$<Month=, Year=>} Value)) / 100, '#,##0M')
Month= and Year = inside Set analysis will cause that selections on those fields will be ignored.
As a note, it is possible that this set analysis also has to be included in the if statement.
Regards
I tried this before, and still consider the Month dimension selection....
Have you tried putting set analysis also in the if Statement?
=num(if(Aggr(Sum({$<Month=, Year=>} Value)), Year, Month) <= 3, sum({$<Month=, Year=>} Value)) / 100, '#,##0M')