Forum Discussion
Dynamic text filter in dax
- 2 years ago
Hello yamina ,
If I understand your requirement correctly, I believe you should use a selectedvalue() in your measure, this selectedvalue () should have the supplier or whatever column used in your slicer that you want to select in your visual.
Following this logic.
NPS = CALCULATE([NPS],Table_BSC_SST[supplier]<>Selectedvalue(Table_BSC_SST[supplier]))
This will help exclude your selected slicer value from the values shown in your table or matrix.
If this solution helps, please accept it as a solution and your kudos will be much appreciated!
Hello Moetazzahran
In fact, whatever the supllier I choose I want that the result in the visual excluded the result of the supplier choosen. I want to show the impact of the chosen supplier in the overall result.
- Moetazzahran2 years ago
Resolver II
Hello yamina ,
If I understand your requirement correctly, I believe you should use a selectedvalue() in your measure, this selectedvalue () should have the supplier or whatever column used in your slicer that you want to select in your visual.
Following this logic.
NPS = CALCULATE([NPS],Table_BSC_SST[supplier]<>Selectedvalue(Table_BSC_SST[supplier]))
This will help exclude your selected slicer value from the values shown in your table or matrix.
If this solution helps, please accept it as a solution and your kudos will be much appreciated!