Forum Discussion

mshamsiev1234's avatar
mshamsiev1234
Regular Visitor
1 year ago
Solved

Month Filter Displayed As Text

Hey community!   I am looking to create a text box or card based visual that displays all selected filters for our end users. I have managed to do so with the standard filters (though it only seems...
  • danextian's avatar
    1 year ago

    Hi mshamsiev1234 

    why not get the min and max months selected instead?

    MinMaxMonths = 
    VAR MinMonth = FORMAT(MIN('Calendar'[Month]), "mmm-yy")
    VAR MaxMonth = FORMAT(MAX('Calendar'[Month]), "mmm-yy")
    RETURN MinMonth & ">" & MaxMonth