Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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!
Solved! Go to Solution.
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.
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.
@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 )
@PBI_Student , what you mean by -2 columns with date type rows?
Usually Datediff can help
Measure
Sumx(Table, datediff([Date1], [Date2], day))
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.