View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default IF Formula Question

I don't think you want that space between the quote marks (a space is an
actual character, you want to test for the absence of any characters); try
it this way...

=IF(X3="",U3,0)

--
Rick (MVP - Excel)


"king60611" wrote in message
...
I need: If column X is blank, use the value in column U; otherwise, the
value
is 0.

I wrote: =IF(X3=" ",U3,0)

Unfortunately, it's returning 0 for everything, even when X is empty.
What's the correct formula I should be using?