how do i setup an if, then statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i want to test a cell - a2 - for a value >0
if >0 i want to multiply a1*a2
else do nothing
t.i.a.
 
One way:

=IF(A2>0,A1*A2,"")

The "" is a null string, so it technically doesn't "do nothing"
(functions always return some value), but it won't display anything.
 

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

Back
Top