If Formula ignoring 0, help???

stephen.smith

Board Regular
Joined
Jul 7, 2010
Messages
119
Hi Guys
I have a database that I am using an If formula to determine a result however some cells that have a zero value are throwing my results. Can anyone help please. This is the formula I am using =IF((F4<F$44),"STRESS","OK")
Thanks In Advance
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Here's your complete formula:

=IF((F4 < F$44),"STRESS","OK")

What cell contains the 0 that is throwing your results, and what do you want it to do in that case?
 
Upvote 0
F4 can have any number from 0 to 50 depending on a result from a questionnaire staff fill out however if the question is irrelevant on a given week the question is ignored and the cell then reads 0. I have 42 staff members each with their own cell for this particular answer and f44 refers to the group average and what I want to find out is which answers are below average but my results keep being thrown by cells which have no value and are irrelevant.
 
Upvote 0
If you change the formula to this then you'll just get a blank when F4 = 0

=IF(F4=0,"",IF(F4< F$44,"STRESS","OK"))
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,217
Members
449,074
Latest member
cancansova

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