Forum Discussion

sumanchintala19's avatar
sumanchintala19
Frequent Visitor
3 years ago
Solved

latest selected month measure values

Hello, 

 

I have a measure which includes a complicated dax function . and I do have a month slicer . 

 

Now when the user selects multiple months ranging from the month slicer I would like to show the latest month measure values on the visual . 

 

Any recommendation please 

  • try to write a measure with this:

    Measure =
    MAXX(
        VALUES(TableName(YearMonth)),
        TableName(YearMonth)
    )

1 Reply

  • try to write a measure with this:

    Measure =
    MAXX(
        VALUES(TableName(YearMonth)),
        TableName(YearMonth)
    )