DPChristman
Board Regular
- Joined
- Sep 4, 2012
- Messages
- 177
- Office Version
- 365
- Platform
- Windows
I have conditional formatting set up on a large spreadsheet. In looking for exceptions above a given threshold, the formula basically says highlight examples where a given location is greater than 30 % higher than the average (greater than X*1.3). This conditional formatting seems to work well on some columns. Yet in other columns it highlights everything, including blank cells.
Since some of the locations do not have any data, I used this formula to eliminate errors and N/As
=IF(I8="","",SUM(G8/I8))
= IF ( I8 = "" , "" , SUM ( G8 / I8 ) )
Any idea what I am doing wrong?
Since some of the locations do not have any data, I used this formula to eliminate errors and N/As
=IF(I8="","",SUM(G8/I8))
= IF ( I8 = "" , "" , SUM ( G8 / I8 ) )
Any idea what I am doing wrong?