• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Different values depending on ISBLANK

Matt_Straya

Member
Hi,
This is the code I have in F6
Code:
=IF(AND(ISBLANK(E6), ISBLANK(D6)), "", D6-$E$4)

But Id like F6 to say "Delivered" if E6 isn't blank.

PS. there are dates in the cells if they aren't blank.

Any ideas?
 
Hi ,

Just add to your existing formula , as follows :

=IF(AND(ISBLANK(E6), ISBLANK(D6)), "", IF(E6 <> "" , "Delivered" , D6-$E$4))

Narayan
 
Working with the formula on sheet MER_Jan. The due date in column D comes from sheet MER_MAP and the date in column is entered when the report is done.
Have attached an example. Thanks for your time.
 

Attachments

  • COPY_MASTER_Reporting_Meas.XLSM
    172.4 KB · Views: 4
Back
Top