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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
charliecronin
New Member

Linked date hierarchy blank after scheduled refresh

Hi there

 

I have a PBI report on our hosted PBI server. It is scheduled / updated nightly. I have a table (on left in image below) that has a Key and Last Updated fields. The Last Updated field has a relationship to a Date table that is created by a DAX (see code snip-it further below) and provides a hierarchy for Year/Month/Day. When you look at the table you can see the Year/Month/Day are blank.

charliecronin_0-1700043655815.png

 

 

When I edit the PBI file in the Desktop app the table gets populated as I would expect (see image below). If I save the report all looks good on the PBI server but when the report is scheduled/updated the table reverts back. Any ideas why this is?

 

charliecronin_1-1700043655826.png

 

 

Thanks for your time.

 

Charlie

 

Date =

 

VAR BaseCalendar = CALENDAR(MIN('Autotime Query'[Week Worked]), MAX('Autotime Query'[Week Worked]))

 

RETURN

    GENERATE (

        BaseCalendar,

        VAR BaseDate = [Date]

        VAR YearDate = YEAR(BaseDate)

        VAR MonthNumber = MONTH (BaseDate)

        RETURN ROW (

            "Day", DAY(BaseDate),

            "Year", YearDate,

            "Month Number", MonthNumber,

            "Month", FORMAT (BaseDate, "mmm")

        )

    )

1 REPLY 1
josef78
Memorable Member
Memorable Member

I'm not sure, but take care about full date value (include time part). Because power query can shift time part of date, if server is configured in different time zone.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.