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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I am working with multiple dates fields and want to be able to filter them all at the same time so I made a date table. However when I make the relationships it is affecting my visuals, it is displaying too many dates at the bottom and the option to select just by month in the pane disappears. Im not sure how to make it work right. Please see photo attached.
Hi @nhodges ,
You need to add a monnth column to your caledar table and use that on the axis.
In Power Query, you can use something like this:
monthKey = Date.Month([date])
monthName = Date.MonthName([date])
monthNameShort = Text.Start(Date.MonthName([date]), 3)
MonthYear =
Text.Combine(
{
Text.Start(Date.MonthName([date]), 3),
Text.End(Text.From(Date.Year([date])), 2)
},
" "
)
Pete
Proud to be a Datanaut!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 5 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 20 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |