Error with ISBLANK function

G

Guest

Hi,

I'm trying to achieve the following:

In Cell A49 I want to have a value from D49. But if D49 is blank, I want the
value from C49, but if C49 is blank I want the value from B49.

=IF(ISBLANK(D49),((ISBLANK(C49),(B49),(C49),)),D49)

is what I have come up with but it doesn't seem to be correct. Can someone
please show me where I've gone wrong.

Thanks!
Dave
 
G

Guest

=IF(ISBLANK(D49),IF(ISBLANK(C49),B49,C49),D49)

Regards,
Stefi

„Dave†ezt írta:
 

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

Similar Threads

ByVal Target Range Great Code but need Help 31
Conditional formatting 4
Formulas 2
Getting info from an IF statement 2
Countif Range not working 4
Working with MAX and IF 2
Formula for charts 2
isblank 2

Top