Calculating percentage with 3 dates

whiteprose

New Member
Joined
May 15, 2021
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
  2. MacOS
In the Production Schedule worksheet, in the range A7:A14, enter formulas to calculate the percentage of each task that has been completed given the task’s start and stop dates and the current date in cell D5. (Hint: The percentage equals the number of days from the current date shown in cell D5 to the task’s start date in column C divided by the number of days allotted to complete each task.)
A B C D
Bronco Design
"Kinman Brothers Grocercy Store
Website Task List"
Today4/17/2017
StatusTaskStart DateStop Date
Collect content4/3/20174/7/2017
Menu interface and layout4/6/20174/21/2017
First draft4/10/20174/18/2017
Review and testing I4/16/20174/20/2017
Second draft4/18/20174/27/2017
Review and testing II4/26/20175/4/2017
Final draft5/5/20175/10/2017
Live Posting5/10/20175/15/2017
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Cell A7 formula :​
Excel Formula:
=IF(D7<=$D$5,100,IF($D$5<C7,0,($D$5-C7+1)/(D7-C7+1)%))
 
Upvote 0

Forum statistics

Threads
1,215,365
Messages
6,124,512
Members
449,167
Latest member
jrob72684

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