I’m getting #VALUE errors because there are blank cells. Is there a way get rid of this?
Also is there a way I can make it so that any numeric value in the range of cells will return ""?
=IF((B2:G2)<>0, "", IF(G2="out",-100,)+
IF(F2="out",-100,)+
IF(E2="out",-100,)+
IF(D2="out",-100,)+
IF(C2="out",-100,)+
IF(B2="out",-100,)
)
The second question was asked because when 0 is present it returns a 0 in the cell.
This formula is to assign a numeric value based on the number of “out” days there are. But if all of the cell in the range have values, I want to return "".
------------------------------------------------------ For example ------------------------------------------------------
Here are some sample data sets (in Columns B-G) and the value I want to get (in Column H):
B C D E F G H I
day1 day2 day3 day4 day5 day6 Average missed
-175 out -175 -100
-175 out -175 `#VALUE`
325 100 212.5 `#VALUE`
Line 1 is what I need Line 2 & 3 are what I get
this is a performance sheet for a project the will base performance "Out" meaning you weren't there the average (h) should average only cells with a Numeric value and (I) should be blank if there is a numeric value or "" in all cells in the range B1:G1. I hope this helps out, not very good with spreadsheets and i am sure it took the long way around on a lot of this. Thanks for the help.