Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I want to show a card visual on the home page of the repport that shows the YearMonth range selected in the filter pane.
I have a DimDate[MonthYear] filter on all pages and have a current selection of Jan/19 until Oct/19. This is what i want displayed in my card visual as "Jan/19 - Oct/19". Ofcourse the visual had to change depending on the filter that changes. I already have the following DAX formula but this one gives me "Oct/19 - Oct/19". I can't figure out what i have to change to get my desired outcome.
Hello @Anonymous,
Can you please try this:
Selected YearMonth Range =
VAR MinYearMonth = CALCULATE(
MIN(Dim_Date[YearMonth]),
ALLSELECTED(Dim_Date)
)
VAR MaxYearMonth = CALCULATE(
MAX(Dim_Date[YearMonth]),
ALLSELECTED(Dim_Date)
)
RETURN
IF(
MinYearMonth <> MaxYearMonth,
FORMAT(MinYearMonth, "MMM/YY") & " - " & FORMAT(MaxYearMonth, "MMM/YY"),
FORMAT(MinYearMonth, "MMM/YY")
)
Hope this helps - If you have any questions, please do not hesitate to reach out to me.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 17 | |
| 16 | |
| 12 | |
| 5 | |
| 5 |