Multiple IF statements.

Excelnewie

New Member
Joined
Nov 13, 2017
Messages
26
Office Version
  1. 2016
Platform
  1. Windows
Can someone please help

I have 5 columns in my table

A Order #
B Order date
C Pick/pack date
D Dispatch date
E Status

I want the 'status' column (E) to return:
"order placed", when there is a date only in column B
"order packed" when there is a date in column B and C
"order dispatched" when there is a date in columns B, C and D

I can do it with the resulting individual status in separate columns using =IF(AND( but can't seem to combine the various possibilities in one column

I'm using MS 2016 and don't want to use VBA and am having trouble downloading
XL2BB but will keep trying

Thanks in advance
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
I'm using MS 2016

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

How about
Excel Formula:
=IF(B2&C2&D2="","",IF(C2&D2="","order placed",IF(D2="","order packed","order dispatched")))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
Thanks also for updating your profile. (y)
 
Upvote 0

Forum statistics

Threads
1,215,646
Messages
6,126,002
Members
449,279
Latest member
Faraz5023

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top