Completion percentage formula

rlexcel101

New Member
Joined
Apr 11, 2018
Messages
48
Hey guys questions on percentage formula between two dates so I have:

Tested two formulas:

1) IFERROR(IF(TODAY()>=X6,””,MAX((TODAY()-W6)/MAX(X6-W6,1),0)),””)

X6 beingend date
W6 being start date

Issue with this is i don’t receive any “100%” if the date is already completed

2) =(W6-TODAY())/(W6-X6)

Issue with this one is I get the percentages but I get a DIV error and if the date has already past (say completion date listed is 7/1/2018) I get like 120% where I just want 100%


So basically I want a formula that reads if date has passed then it just states 100% and for it to read if no values than display nothing.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Not sure what you are trying to do exactly, but is this what you want?

=IF(COUNT(W6:X6)<2,"",MIN(1,(W6-TODAY())/(W6-X6)))
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top