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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
PaulCo
Helper II
Helper II

Adding a column which calculates the number of days between a date in a column and today's date

I would like to create a column in a table which contains the number of days between a the date in a column and today's date. 

 

For instance I would like it to look like this if todays date was 6/20/2017

 

Estimated Close DateDays until Close
6/30/201710
6/29/20179

 

 

I tried using the add custom column with the TODAY() function but it wasn't being recognised. 

 

Does anyone know the most efficient way to show the number of days?

 

Thanks

 

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @PaulCo,

 

You should also be able to use TODAY() function to create calculate column to your table like below. Smiley Happy

Days until Close = Table1[Estimated Close Date] - TODAY()

c4.PNG

 

Note: just replace 'Table1' with your real table name, and set the Data type to Whole Number for the new created calculate column.

 

Regards

View solution in original post

3 REPLIES 3
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @PaulCo,

 

You should also be able to use TODAY() function to create calculate column to your table like below. Smiley Happy

Days until Close = Table1[Estimated Close Date] - TODAY()

c4.PNG

 

Note: just replace 'Table1' with your real table name, and set the Data type to Whole Number for the new created calculate column.

 

Regards

This worked thanks Smiley Very Happy

Mi2n
Microsoft Employee
Microsoft Employee

Today() is a DAX function. You cannot use it in the Power Query part where you create a custom column. You will have to use the M language in this case.

 

Duration.Days(Duration.From(<Date field name> - DateTime.LocalNow))

Try something like this. You might have to replace the <Date field name> with your corresponding field name.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.