cancel
Showing results for 
Search instead for 
Did you mean: 

Measure grouping in WEBI

Former Member
0 Kudos
360

Hi ,

I have data in table like below

Product Order count Cost

A 1 20

A 2 30

B 3 40

B 4 50

expected results

Product Total (Order Count* Cost)

A 80

B 320

but getting like below

Product Total (Order Count* Cost)

A 150

B 630

Please help me how we can solve in report level

Accepted Solutions (1)

Accepted Solutions (1)

arijit_das
Active Contributor
0 Kudos

to achieve the desired result, the Order Count object has to be a dimension, not a measure.

So, create a dimension object for count and then use the following function for Total calculation:

=Sum([Order Count]*[Cost])

Answers (0)