Entering only 2 values out of 3 - throws up message as false

B

Beena K

Dear All

I have 3 columns D E F, where the user enters a number. ( Any number from 0
to 50)
Then in Column G, I have entered a formula to get a weighted average for
values entered in Col D or E or F

=IF(ISERROR((D52*3+E52*2+F52*1)/SUM(D52:F52)),"",(D52*3+E52*2+F52*1)/SUM(D52:F52))

Based on this Column H gets updated as either Fully Implemented \ Largely \
Partially
-----------------------------------------------------------------------------------------------
formula used is
=IF(G52=0,"Fully Imple.",IF(G52=1, "Largely Imple.", IF(G52=2, "Partially
Imple.", IF(G52=3,"Not Imple.", IF(G52="", "Fully Implemented")))))
-----------------------------------------------------------------------------------------------
My Problem
If I enter values in only 2 columns (D or E or F ) Column H shows false.

May I request your help once more.

Cordially - Beena K
 
B

Bob Phillips

How about

=IF(G52=0,"Fully Imple.",IF(G52<=1, "Largely Imple.", IF(G52<=2, "Partially
Imple.", IF(G52<=3,"Not Imple.", IF(G52="", "Fully Implemented")))))

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
B

Beena K

Hi Bob

Thanks a million for the speedy response. The formula works.

Cordially
Beena K
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top