Forum Discussion
JawaharPrem6
Helper I
2 years agoNetwork Days Calculation between both Error shown
Hi, Getting error while doing network days calculation, for this calculation i create a new table with date, week end Workday as given below. and getting error while calculating ...
bhanu_gautam
Super User
2 years agoJawaharPrem6 , Try using below measure
Process_Time_New =
VAR _Start = Gobal_Master_Data_NA[Received_Date]
VAR _End = Gobal_Master_Data_NA[Completed_Date]
RETURN
COUNTROWS(
FILTER(
Working_Dates,
Working_Dates[Date] >= _Start &&
Working_Dates[Date] <= _End &&
Working_Dates[Workday] = 1
)
)
- JawaharPrem62 years ago
Helper I
Hi, Thanks for your time,
it working but its counting insted of calculating time..
calculated time like this