#DIV/0! problem

P

puiuluipui

Hi, i have this formula:
=(E44/E43)*100
I need the formula to return a message if one or both cells are empty (E44
and E43)
The mesage to be No entry.
Can this be done?
Thanks!
 
J

Jacob Skaria

Try
=IF(COUNT(E43:E44)=2,(E44/E43)*100,"No Entry")

If this post helps click Yes
 
Top