IF Formula Question

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?
 
R

Rick Rothstein

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)
 
M

Mike H

Hi,

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


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

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top