Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I have below expression in the bar chart.
My dimension is Called Type.
=(If(GetFieldSelections(_BTUnitOfMeasure)='SQF',
(Sum([RSF])),
(Sum([RSF]))) * SUM(Value)
I am not getting the desired number,So tried with the straight table.Here I get different number with Expression total and sum of rows.
How can I get the same with both options.
Thank you,
What are you getting and what was expected? Do you have a sample or images to show?
May be try this
=If(GetFieldSelections(_BTUnitOfMeasure) = 'SQF', Sum([RSF]), Sum([RSF]) * Sum(Value))
Hi Sunny...Thank you.
I have attached 2 files...QVW and excel.
How can I get sum of rows number in bar char ?
May be you want this
Sum(Aggr(Sum(RSF)*Sum(VALUE), ID, Segment))
Hi,
Can you tell us which output your trying to get in the excel.
Awesomeness....Thank you.