Forum Discussion
mshamsiev1234
1 year agoRegular Visitor
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...
- 1 year ago
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
mshamsiev1234
1 year agoRegular Visitor
Thank you all for the incredible help! Always learn something new from the community 🙂