Forum Discussion

PBI_Student's avatar
PBI_Student
New Member
4 years ago
Solved

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!

  • Anonymous's avatar
    Anonymous
    4 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

  • PBI_Student , what you mean by -2 columns with date type rows?

     

    Usually Datediff can help

     

    Measure

    Sumx(Table, datediff([Date1], [Date2], day))

  • Anonymous's avatar
    Anonymous
    Not 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.