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
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.
Solved! Go to Solution.
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.
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.
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.
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.
Hello,
It worked out! thank you very much.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
16 | |
13 | |
10 | |
8 |
User | Count |
---|---|
59 | |
20 | |
12 | |
11 | |
10 |