Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, I have to columns of dates and with the new aggreagted option in the Jan 17 version of powerBI iI was hoping to see some 'levels' in the dates. Especially the time between the First date in column X and the last date in column Y.
Im however struggeling to calcualte the days (months preferebly) between the two columns below ('earlist FPI and Latest LPI'). I have tried the datediff but it returns errors..
Any ideas?
Solved! Go to Solution.
Hello, try with these measures
Diff in Days= DATEDIFF ( FIRSTDATE ( Table2[Date] ), LASTDATE ( Table2[Date] ), DAY )
Diff in Months= DATEDIFF ( FIRSTDATE ( Table2[Date] ), LASTDATE ( Table2[Date] ),MONTH )
What does the error message say?
Make sure those two columns are data type, it supposes to work when using DATEDIFF() function.
Regards,
What does the error message say?
Make sure those two columns are data type, it supposes to work when using DATEDIFF() function.
Regards,
Hello, try with these measures
Diff in Days= DATEDIFF ( FIRSTDATE ( Table2[Date] ), LASTDATE ( Table2[Date] ), DAY )
Diff in Months= DATEDIFF ( FIRSTDATE ( Table2[Date] ), LASTDATE ( Table2[Date] ),MONTH )
Perfect! Thanks a lot, it works! 🙂
K
Another poblem I have is that it will not work if I have some empty cells in the columns.
Can I somehow account not to calculate with where there is blank cells?
Kristoffer