Forum Discussion
Simple table visual - display only rows that equal a measure.
Thanks for the replies from Ritaf1983.
Hi draxicle1 ,
Create two measure:
Maxdate = CALCULATE(MAX('Objective Scorecard'[Date of Evaluation]),ALL('Objective Scorecard'))Measure = IF(MAX('Objective Scorecard'[Date of Evaluation])=[Maxdate],1,0)
Then filter out data with measure equal to 1:
Result:
Best Regards,
Zhu
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi there.
Many thanks for this. It makes perfect sense.
Unfortunately it does not seem to work in the pbix I have.
Green is the 1/0 value measure when Date of Evaluation = Maxdate
Orange is Maxdate2 (slightly modified to work with slicers, removing ALL)
Blue is the Filter.
As you can see it is pulling all rows in still.
- Anonymous1 year agoNot applicable
Hi draxicle1 ,
Another way to do this is to create a calculated column:
IsMaxDate = IF('Objective Scorecard'[Date of Evaluation]=[Maxdate],1,0)Filter the calculated column with the value of 1:
Best Regards,
ZhuIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.