I am trying to create 2 measures one for flag a and another for flag b, and these measures have to change based on the date range filtered and the appearance of all two flags in the recent date.
So in other words if I apply a filter from 25/02/2023 to 08/03/2023 as in the picture the output of the measure flag A must be 0 in all rows because in the last date 08/03/2023 it does not appear, it appears flag so in the measure flag B must be 1 in all rows because in 08/03/2023 it appears as in the picture.
Result expected:
I can get the flag to change dynamically but only on the last row not all rows of all two measures, I don't know if it is possible to do that with a measure.
Thanks.
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
Flag A measure expected outcome: =
VAR _slicerlastdate =
CALCULATE ( MAX ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar'[Date] ) )
VAR _flagAdate =
FILTER ( ALL ( 'Calendar'[Date] ), CALCULATE ( MAX ( Data[Flag A] ) ) = "A" )
RETURN
IF (
HASONEVALUE ( 'Calendar'[Date] ),
IF ( _slicerlastdate IN _flagAdate, 1, 0 )
)
Flag B measure expected outcome: =
VAR _slicerlastdate =
CALCULATE ( MAX ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar'[Date] ) )
VAR _flagAdate =
FILTER ( ALL ( 'Calendar'[Date] ), CALCULATE ( MAX ( Data[Flag B] ) ) = "B" )
RETURN
IF (
HASONEVALUE ( 'Calendar'[Date] ),
IF ( _slicerlastdate IN _flagAdate, 1, 0 )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!