Forum Discussion
Anonymous
2 years agoNot applicable
How do exclude a certain row's calculation in a Matrix?
Hi all, here is my data structure
How do i create a generic fomula for Multiple in PowerBI to exclude A from it? (i.e., excluding A when applying the fomula in column E but keep C and D including A)
Thanks.
Hi,
Try these measures
Ratio = divide([cash inflow],[cash outflow])
Ratio final = calculate([Ratio],Data[Project]<>"Project A")
Hope this helps.
3 Replies
- Ashish_MathurSuper User
Hi,
I am not clear about what you want. Assuming Cash inflow and Cash outflow are measure, write this measure
Measure = divide([Cash inflow],[cash outflow])
Hope this helps.
- AnonymousNot applicable
I need to exclude Project A from the total calculation.
- Ashish_MathurSuper User
Hi,
Try these measures
Ratio = divide([cash inflow],[cash outflow])
Ratio final = calculate([Ratio],Data[Project]<>"Project A")
Hope this helps.