Forum Discussion
Total two rows for a measure
- Anonymous4 years ago
Hi mohsenask ,
You could use SUMX() function to get the sum of measure.
For example:
Measure 4 = SUMX(ALL('Table'),[Measure 3])Best Regards,
Jay
Hi amitchandak - i have those measures but MS_%_Applied is actually calculating the individual % for the fee_category
I want to calculate the % Applied = (% Applied of BillingAmt) + (% Applied of Gross) i.e. 3.08+0.11= 3.19 into another column?? or where?
So the % applied = 3.19 (for both network_fee and stripe_fee)
Then the measure if([MS_%_Applied ] >.0205 , "Premium", "Not Premium") can be created.
mohsenask , You can not have column now you can measure
Both should be measure
M1 =
[% Applied of BillingAmt] + [% Applied of Gross]
Or
AverageX(values(Table[Charge id]) ,[% Applied of BillingAmt] + [% Applied of Gross] )
- mohsenask4 years ago
Helper II
M1 =
[% Applied of BillingAmt] + [% Applied of Gross]
are these two new measures to create and then sum them into M1 ?