Forum Discussion
How many days beetween 2 dates?
Hello everyone!
I'm working on a PBI dataset and I have 2 columns with date type rows. For each row, I need to calculate how many days are beetween those 2 dates.
Could anyone of you please tell me if there's any calculated measure I can use to do so?
Wish you all a very nice day!
- Anonymous4 years ago
Hi PBI_Student ,
There are the following ways to achieve this:
Create measure:
DATEDIFF = DATEDIFF(MAX('Table'[Date1]),MAX('Table'[Date2]),DAY)INT = ABS( INT(MAX('Table'[Date1])-MAX('Table'[Date2])))1ABS = ABS( 1 * (MAX('Table'[Date1]) - MAX('Table'[Date2])))Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- amitchandakSuper User
PBI_Student , what you mean by -2 columns with date type rows?
Usually Datediff can help
Measure
Sumx(Table, datediff([Date1], [Date2], day))
- Tahreem24Super User
PBI_Student ,You can sue DATEDIFF for calculting a no. of days between two dates range.https://docs.microsoft.com/en-us/dax/datediff-function-dax
No. of Days =DATEDIFF(MIN( Calendar[Date] ), MAX( Calendar[Date]), DAY )
- AnonymousNot applicable
Hi PBI_Student ,
There are the following ways to achieve this:
Create measure:
DATEDIFF = DATEDIFF(MAX('Table'[Date1]),MAX('Table'[Date2]),DAY)INT = ABS( INT(MAX('Table'[Date1])-MAX('Table'[Date2])))1ABS = ABS( 1 * (MAX('Table'[Date1]) - MAX('Table'[Date2])))Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.