Forum Discussion
idontexist
8 years agoHelper I
Calculate several numeric values
Hi guys,
I need to calculate values like the following:
| Plan | Fact | New measure | |
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | 15 | 15 | |
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | |||
| 15 | |||
| Total | 180 | 15 | 15 |
I almost done this with Matrix plan = if(not(ISBLANK([Fact]));'Local Measure'[Plan];blank()) but it shows me wrong value in totals (still 180 instead of 15).
Plan and Fact values from different tables. Both tables - live and already calculated data.
Is that possbile to do?
9 Replies
- Zubair_MuhammadCommunity Champion
HI idontexist
Try adding if hasonevalue before your MEASURE
If(hasoneValue(LocalMEasure[Plan]), YourMEASURE)
- idontexistHelper I
- Zubair_MuhammadCommunity Champion