Help needed would this be an IF statement

P

pano

How do I write this formula I have been given the first part but cant
work out the rest myself

=IF(A1<>"",8.26,"")

If A1 is blank make b1 blank if A1 is not blank put 8.26 in B1 also if
A1 is not blank but J1 is blank enter blank in B1

thanks Stephen
 
D

Dave Peterson

I don't think you need the A1<>"" in the =and() portion. You already know that
A1<>"" because of the first test.

Maybe just:

=IF(A1="","",IF(J1="","",8.26))
 
T

T. Valko

Yeah, you're right!

Biff

Dave Peterson said:
I don't think you need the A1<>"" in the =and() portion. You already know
that
A1<>"" because of the first test.

Maybe just:

=IF(A1="","",IF(J1="","",8.26))
 

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