Forum Discussion
Anonymous
4 years agoNot applicable
Timeline Calculaction
Hi to All, I am workinng on a dashboard where i need timeline My total working day in a month 25 Passed day in a month 24 (excludes weekend and holidays) as per Today Timeline =96% what i want i...
- Anonymous4 years ago
Hi Anonymous ,
Please create these calculated columns.
Month = MONTH ( 'Table'[Date] )WorkDay = IF ( WEEKDAY ( 'Table'[Date], 2 ) = 7 , 0, 1 )TotalWorkingDay = 25DayPassed = COUNTX ( FILTER ( 'Table', 'Table'[WorkDay] = 1 && 'Table'[Month] = EARLIER ( 'Table'[Month] ) && 'Table'[Date] <= EARLIER ( 'Table'[Date] ) ), 'Table'[Date] )DayRemain = 'Table'[TotalWorkingDay] - 'Table'[DayPassed] + 1Timeline% = DIVIDE ( 'Table'[DayPassed], 'Table'[TotalWorkingDay] )The PBIX file is attached for reference.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Anonymous
4 years agoNot applicable
TimeElapsed should come like if my InvDate is this(6/28/2022) than Than TimeElapsed will this (Time Elapsed : 96% (24 of 25 Working Days)