Forum Discussion
IF DAX measure
- 6 years ago
hi subho220
First, you should know that:
1. Calculation column/table not support dynamic changed based on filter or slicer.
2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result in a visual by its row context.https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/
Second, for your requriement, you could use this formula to create a meausre
Measure = IF( MIN(Table[Reportable Result]) ="Something", true,false)
Regards,
Lin
hi subho220
First, you should know that:
1. Calculation column/table not support dynamic changed based on filter or slicer.
2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result in a visual by its row context.
https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/
Second, for your requriement, you could use this formula to create a meausre
Measure = IF( MIN(Table[Reportable Result]) ="Something", true,false)
Regards,
Lin