Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please see attached qvf.
There is an auto generated 'Total' column.
For row 'yellow' - how do I return the total sum of row 'red' + row 'purple' instead ? Should be returning 19.7
Do you want one of these?
Top chart expression
If(Description = 'yellow', Sum(TOTAL {<Description = {'red', 'purple'}>}Amount * Rate), Sum(Amount * Rate))
Bottom chart expression
If(Description = 'yellow' and SecondaryDimensionality() = 0, Sum(TOTAL {<Description = {'red', 'purple'}>}Amount * Rate), Sum(Amount * Rate))
in that case what you do about South 6.3
That value is to be not displayed.
Only need to fix 'Total' column . Please help !
Do you want one of these?
Top chart expression
If(Description = 'yellow', Sum(TOTAL {<Description = {'red', 'purple'}>}Amount * Rate), Sum(Amount * Rate))
Bottom chart expression
If(Description = 'yellow' and SecondaryDimensionality() = 0, Sum(TOTAL {<Description = {'red', 'purple'}>}Amount * Rate), Sum(Amount * Rate))