Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
nhodges
Helper I
Helper I

Date Table making affecting my visuals

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.

nhodges_0-1676479221279.png

 

1 REPLY 1
BA_Pete
Super User
Super User

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



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors