Forum Discussion
Likhitha
6 years agoHelper IV
Doubt regarding about calculating difference between dates
Hello All, I'm having a status column and date column.I need to calculate datediff between preceding dates.How to do that?
v-lid-msft
6 years agoCommunity Support
Hi Likhitha ,
We can create a calculated table to meet your requirement:
Column =
DATEDIFF (
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( 'Table', 'Table'[Date] < EARLIER ( 'Table'[Date] ) )
),
[Date],
DAY
)
If it doesn't meet your requirement, Please show the exact expected result based on the Tables that you have shared.
Best regards,
- Likhitha6 years agoHelper IV
I have one date column from which i need to calculate the net working dates with time duration.
What i have did is created a calendar table from which i calculated the sum of weekdays am achieving the networking days, but not the time included.
Can anyone help me how i can achieve networking days along with the time?
Screenshot of the raw data and the logic.