IF Formula Question

  • Thread starter Thread starter king60611
  • Start date Start date
K

king60611

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?
 
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)
 
Hi,

Get rid of the space between the quotes because currently TRUE is a space in
column X


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

Mike
 
Back
Top