Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have below table :-
Measure -Sum(Volume)/
sum({<Brand-={'Total Market'}>}total Volume)
When I am selecting month year , it gives me below results which is incorrect:-
So ,in order to keep the values static on Month Year selection, I passed this dimension in aggregation . Used below expression :-
Sum(Volume)/
sum({<Brand-={'Total Market'}>}total <MonthYear> Volume)
When I used the above, it results started coming fine. Now when I select any month year , my results are not changing.
However, when I am selecting anything from Brand filter, my measure values are changing like below :-
I don't want my values to change on Brand and Month Year filter selection . It should be static .
How can I achieve it ?
Thanks in advance
Kindly use the below expression, and let us know
Sum(Volume)
/
sum({$<Brand-={'Total Market'},Brand=>}total Volume)
Use these modified expressions as they disregard all selections made in both Branch and MonthYear dimensions.
SUM({<Brand=,MonthYear=>}Volume)
/
SUM({<Brand={'*'}-{'Total Market'},MonthYear=>} Volume)
Hello ,
Thanks for your response
I tried your expression and it gives me below output :-
Kindly Try as below and let us know ,
Sum(Volume)/sum({$<Brand-={'Total Market'}Brand=,MonthYear=>>}total Volume)
or
Sum({1}Volume)/sum({1<Brand-={'Total Market'}Brand=,MonthYear=>>}total Volume)
I suggested this earlier, both numerator and denominator. What's the feedback?
SUM({<Brand=,MonthYear=>}Volume)
/
SUM({<Brand={'*'}-{'Total Market'},MonthYear=>} Volume)
Apologies , Kindly set the value 1 before < as shown below,
Sum({1}Volume)/sum(1{<Brand-={'Total Market'}Brand=,MonthYear=>>}total Volume)
Hello @BrunPierre
I Tried your expression but it is not giving me any values . Please see below :-
Thanks