The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 )
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 )
Hello,
It worked out! thank you very much.
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
21 | |
14 | |
14 | |
9 | |
7 |