Forum Discussion
Pat8
4 years agoFrequent Visitor
Change column value based on slicer
I have a table with months and showing amounts and a measure comparing last month and this month's amount: Month This Month Not This Month Amount Measure: Amount - Lastmonth amount 1-Jan ...
- 4 years ago
Hi Pat8 ,
You need to create a disconnected table as a slicer,
slicer = DISTINCT('Table'[Month])
then create the following measure:Measure = IF(MAX('Table'[Month])>SELECTEDVALUE(slicer[Month]),TRUE(),FALSE())
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
V-lianl-msft
Community Support
4 years agoHi Pat8 ,
You need to create a disconnected table as a slicer,
slicer = DISTINCT('Table'[Month])
then create the following measure:
Measure = IF(MAX('Table'[Month])>SELECTEDVALUE(slicer[Month]),TRUE(),FALSE())
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.