Forum Discussion
Last month measure
- Anonymous5 years ago
Hi karinafreitass ,
I made a simple sample.
First of all, there can be no relationship between the two tables. If it is relevant, the value of the previous month cannot be obtained.
Measure = IF ( CALCULATE ( MAX ( 'Table'[Data] ), FILTER ( ALL ( 'Table' ), [Data] = DATESINPERIOD ( 'dCalendar'[Data], SELECTEDVALUE ( dCalendar[Data] ), -1, MONTH ) ) ) = MAX ( 'Table'[Data] ), 1 )Then put the measure into visual level Filters and set Show items when the value is 1.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi karinafreitass ,
I made a simple sample.
First of all, there can be no relationship between the two tables. If it is relevant, the value of the previous month cannot be obtained.
Measure =
IF (
CALCULATE (
MAX ( 'Table'[Data] ),
FILTER (
ALL ( 'Table' ),
[Data]
= DATESINPERIOD (
'dCalendar'[Data],
SELECTEDVALUE ( dCalendar[Data] ),
-1,
MONTH
)
)
)
= MAX ( 'Table'[Data] ),
1
)
Then put the measure into visual level Filters and set Show items when the value is 1.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.