Forum Discussion
Anonymous
6 years agoNot applicable
Calculating Percentage time remaining
Hi I am trying to create a Measure to work out a percentage of time remaining on a project, this takes into account todays date. All the data in in a single table. The table has many rows, the ...
- 6 years ago
Anonymous
You need two measures:Remaining Days = INT(TODAY() - MAX(Project[End date]))% Remaining = DIVIDE( [Remaining Days], MAX(Project[Project No of days]) )________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon if you like this reply 🙂
amitchandak
Super User
6 years agoAnonymous , Try like
avergageX(summarize(Table, Table[code],Table[StartDate],Table[endDate],"_1", max(Table[project no of Days]), "_2",max(Table[remaining Days])), divide([_2],[_1]))