I have created a formula to look at cell f9 and depending on its value, I want to give it my own value. If its above 0 then it should always return with a '3'. If its under 0 then it should always return with a '0'. If the value is exactly 0 then it will return with a '1'. The issue I am having is that not all cells in row 9 have values. Therefore the formula returns a value of #value! where I also need this to return as a '0'. Here is the formula that works, I just need help with the final bit to change #value! to a '0'. My formula is =if(f9>0,"3",if(f9<0,"0",if(f9,0,"1")))