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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mbailey
Helper II
Helper II

Can't create datediff measure

Hi,

 

I've got a table with a date field in it called install_date. The field is of Type Date:

mbailey_0-1632404958714.png

mbailey_1-1632404970051.png

I'm trying to create a measure to calc the number of days between this date and Today using this formula, but it errors saying it can't find the field.  When building the formula, it only wants to suggest fields that are existing Measures and I can't pick any other fields.

mbailey_2-1632405096648.png

 

What am I missing?

 

Thanks,

Mike

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@mbailey , you can create a column like that.

For measure, you have to use min/max.

 

or

 

Try like

Averagex(Table, datediff([Install Date], today(), day) )

View solution in original post

3 REPLIES 3
V-pazhen-msft
Community Support
Community Support

@mbailey 
You cannot just refer to a column in a measure, you must add a function to refer to a column value. In your case, using min, max, sum, average, selectedvalue, are all the same they just call out the current row of the [install_date].

 

 

Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

Watsky
Solution Sage
Solution Sage

Hey @mbailey,

 

@amitchandak  is correct since you're doing a measure there needs to be some sort of aggregator.  Another option you can try is using SELECTEDVALUE

 

 InstallDays =  DATEDIFF(SELECTEDVALUE('DMTA_Service_Install_Base'[install_date]),TODAY(),DAY)

 


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up! ?
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.

 


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up!
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.

Proud to be a Super User!

amitchandak
Super User
Super User

@mbailey , you can create a column like that.

For measure, you have to use min/max.

 

or

 

Try like

Averagex(Table, datediff([Install Date], today(), day) )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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