Blank until data is entered

K

ksalv002

I'm currently using this conditional function, which works fine, but
want it to only work when data is entered into all referenced cells.
tried to insert COUNTIF, but don't think I'm inputting it correctly
Please assist.

=IF(AND($Q5<=$P5,$Q5>=$R5),"Neutral",IF($Q5>$O5,"High",IF($Q5<$S5,"Low",""))
 
C

Claus Busch

Hi,

Am Fri, 10 Aug 2012 14:26:41 +0000 schrieb ksalv002:
I'm currently using this conditional function, which works fine, but I
want it to only work when data is entered into all referenced cells.

=IF(AND($Q5<=$P5,$Q5>=$R5),"Neutral",IF($Q5>$O5,"High",IF($Q5<$S5,"Low","")))

try:
=IF(COUNT($O5:$S5)<5,"",IF(AND($Q5<=$P5,$Q5>=$R5),"Neutral",IF($Q5>$O5,"High",IF($Q5<$S5,"Low",""))))


Regards
Claus Busch
 

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