Forum Discussion
Anonymous
6 years agoNot applicable
Calculating Expected Due/Completion Date Time based on SLA & Created Date Time
Hi, Looking for a help on DateTime Caculation. I have a table with Unique Tasks Ids and its allocated dateTime and each of it has an SLA in days defined. I need to create every Task's expected Com...
- Anonymous6 years agoQUOTIENT = QUOTIENT(WEEKDAY(Test[Allocate DateTime],1)+Test[SLA Days],7)Expected End Date = Test[Allocate DateTime]+Test[SLA Days]+2*Test[QUOTIENT]Thanks,Pravin
Anonymous
6 years agoNot applicable
refer this one
https://community.powerbi.com/t5/Desktop/Add-working-days-to-a-date/td-p/146945
You need create date table and also you need to identify which one weekday and weekend in date table only and link date table on allocation date.
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
Anonymous
6 years agoNot applicable
Try this one as well
New column=
var Quotient_=QUOTIENT(WEEKDAY(Test[Allocate DateTime],1)+Test[SLA Days],7)
return
Expected End Date = Test[Allocate DateTime]+Test[SLA Days]+2*Quotient_
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.