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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
amgelain
Regular Visitor

DATEDIFF

Hello,

 

In the table there is column A with the start date and column B with the end date. When creating a measure in dax starting with DATEDIFF to find the difference between dates, these do not appear to be included in the formula. What can it be?

 

DATEDIF = DATEDIFF(Tabela[Date1], Tabela[Date2], DAY)

 

Thank you in advance for your help.

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, 

One of ways to achieve this is using SELECTEDVALUE DAX function.
Please check the below picture and the attached pbix file.

Also, link down below is very helpful.

Jihwan_Kim_0-1698726758441.png

Link: SELECTEDVALUE function - DAX | Microsoft Learn

 

expected result measure: =
DATEDIFF ( SELECTEDVALUE ( Data[Date1] ), SELECTEDVALUE ( Data[Date2] ), DAY )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, 

One of ways to achieve this is using SELECTEDVALUE DAX function.
Please check the below picture and the attached pbix file.

Also, link down below is very helpful.

Jihwan_Kim_0-1698726758441.png

Link: SELECTEDVALUE function - DAX | Microsoft Learn

 

expected result measure: =
DATEDIFF ( SELECTEDVALUE ( Data[Date1] ), SELECTEDVALUE ( Data[Date2] ), DAY )

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Hello,

It worked out! thank you very much.

FreemanZ
Super User
Super User

the code for calculated column is fine, but would be an issue for a measure. 
 
could you show how the measure is presented?

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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