Forum Discussion
TheCAKurtle
6 years agoHelper I
Dynamic Budgeting Tool
I am currently trying to build a dynamic budgeting tool for an energy company. With oil prices being so low currently this company would like to have the ability to "turn off" a well to help determin...
- 6 years ago
Hi TheCAKurtle ,
1. Create a slicer table,put the categories in the column:
2.Delete the relationship between table and the slicer table:
3.Create a measure as below:
Measure = IF(SELECTEDVALUE('slicer table'[category])=SELECTEDVALUE('Table'[Category]),0,'Table'[Ratio])Finally you will see:
Is the above what you need?
Here is my sample .pbix file you can refer to.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
v-kelly-msft
6 years agoCommunity Support
Hi TheCAKurtle ,
1. Create a slicer table,put the categories in the column:
2.Delete the relationship between table and the slicer table:
3.Create a measure as below:
Measure = IF(SELECTEDVALUE('slicer table'[category])=SELECTEDVALUE('Table'[Category]),0,'Table'[Ratio])
Finally you will see:
Is the above what you need?
Here is my sample .pbix file you can refer to.
Best Regards,
Kelly
Kelly
Did I answer your question? Mark my post as a solution!
TheCAKurtle
6 years agoHelper I