Forum Discussion
Junaid11
4 years agoHelper V
Progress based on two dates
Hello, I have a table for course start date and course completion. I want to get progress in % to see how much progress have been made. Like if it started in January and was to complete in December ...
amitchandak
4 years agoSuper User
Junaid11 , Try a measure like
measure =
var _max = maxx(allselected('Date'), 'Date'[Date])
return
divide(Sumx(Table,datediff(Table[Start Date],_max, Day)+1) ,Sumx(Table,datediff(Table[Completion Date],_max, Day)+1) )