Forum Discussion
Dax
- 4 years ago
Hi Kumarun ,
According to your description, here's my solution, create a measure.
Check = IF ( MAX ( 'Table'[Month] ) > EOMONTH ( TODAY (), -1 ), 1 )Put it in the visual filter and select its value to 1,
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hai V-kalyj
Thank you so much.
In matrix visualization, I have row-wise country and column-wise dates.
But here need to display only current month's value only. not other months.
Once take values into the values section it's taking all the months.
I need to display the present month values only.
Hi Kumarun ,
According to your description, try to create a measure for the value, put the measure in the Values section.
Measure =
IF ( MONTH ( MAX ( 'Table'[Month] ) ) = MONTH ( TODAY () ), [Value], BLANK () )
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.