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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
IvanKostov
Frequent Visitor

How to avoid having date and date/time column (Incremental Refresh and Calendar Table)

Hello,

 

I am currently building a data model, where I have various date/time columns.  In this regard I found that according to best practices I should have a calendar table. Since I don't need the times I simply converted the date/time columns in PowerQuery to date columns and the issue was resolved. However, since I also want to have an incremental refresh on the table I need a date/time column.

 

What are the best practices in such scenarios? Do you always need a date column and a date/time column or there are some workarounds?

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @IvanKostov ,

 

If you need a date column (calendar relationship) and you need a datetime column (incremental refresh) then you need a date column and a datetime column, no way around that I'm afraid.

In Power Query, keep your datetime column as-is, then create a new custom column using the following:

Date.From([datetimeColumn])

Using Date.From will prevent query folding from breaking if your source is foldable.

 

Pete



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

Proud to be a Datanaut!




View solution in original post

2 REPLIES 2
IvanKostov
Frequent Visitor

Thanks Pete! 

BA_Pete
Super User
Super User

Hi @IvanKostov ,

 

If you need a date column (calendar relationship) and you need a datetime column (incremental refresh) then you need a date column and a datetime column, no way around that I'm afraid.

In Power Query, keep your datetime column as-is, then create a new custom column using the following:

Date.From([datetimeColumn])

Using Date.From will prevent query folding from breaking if your source is foldable.

 

Pete



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

Proud to be a Datanaut!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors