View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Change cell value result from "FALSE" to blank or zero

=IF(N6=1,O6,IF(P6=1,Q6,IF(R6=1,S6,IF(T6=1,U6,0 ))))
--
David Biddulph

"JG" wrote in message
...
I have the following IF statement written into this cell:

=IF(N6=1,O6,IF(P6=1,Q6,IF(R6=1,S6,IF(T6=1,U6)) ))

If cells N6, P6, R6 or T6 all have zeros written into them, cell E6 shows
the value "FALSE". How can I have this cell have the value 0 under these
conditions?