G
Guest
=IF((H3>D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109)))
Shouldn't this work or what am I missing? thanks
Shouldn't this work or what am I missing? thanks
Jim Thomlinson said:You are a little messed up. Your final criteria H3=D3 is not necessary as you
have already determined that it is not greate or less than (must be equal)...
Try this...
=IF(H3>D3, CHAR(233),if(H3<D3, CHAR(234),CHAR(109)))