Need formula to show % complete

RickeyS

Board Regular
Joined
Jun 23, 2006
Messages
222
Hi,

I need a formula to show % complete,

I have a list of names in column A

Column's B thru F will be a task for each person in column A to complete, those columns will have text, or date or be blank to show if a task was completed

Each of these task (column would be a different value). In column B if there is text or a date would be 10% value, if blank would be 0% value, column C would be worth 20% if there is text or a date and again 0% if blank, column D would be worth 5% if there is text or a date and 0% if blank, Column E would be worth 8% if there is text or a date 0% if blank, Column F would be worth 7% if there is text or a date and 0% if blank,

Also in Column G will be a % completed of another task already 0% to 50%.

So the formula needed will be in column H and will need to be like this, but don't know how to write it:

= sum(If B2 is not blank + 10%, if C2 is not blank + 20%, if D2 is not blank +5%, if E2 is not blank + 8%, if F2 is not blank + 7%) + G2

Hopes this makes sense to someone that can help.

Thanks
Rick
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Perhaps this will work for you:

=(0.1*(B2<>""))+(0.2*(C2<>""))+(0.05*(D2<>""))+(0.08*(E2<>""))+(0.07*(F2<>""))+G2

Assumes G2 contains a decimal number. Format result as %.
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

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