View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett[_2_] Don Guillett[_2_] is offline
external usenet poster
 
Posts: 1,522
Default Why does blank cell assume value = 1?

=IF(LEN(TRIM(H10))0,PRODUCT(H10,0.5),"")

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"C" wrote in message
...
I have created a simple =product formula that calculates the value of one
cell multiplie by a certain value. i.e. =product(h10,.5) The formula works
fine, but when h10 refers to a blank cell, it assumes the value is 1. I
want
it to assume nothing really, but in reality I want it to assume 0, rather
than 1.

Help?