add to cell formula additional criteria

steve400243

Active Member
Joined
Sep 15, 2016
Messages
429
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hello, I am using this cell formula to populate the word Shipped in A3 when a date is put into F3.
I need a way for the formula to read "Received" once a date is put into cell D3. Then changing to "Shipped" once a date is put into F3. And Blank if no data is in D3, or F3. Hope that makes sense. Thank you for any help provided.

VBA Code:
=IF(F3>1/1/2021,"Shipped","")
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
How about
Excel Formula:
=IF(D3="","",IF(F3="","Received","Shipped"))
 
Upvote 0
Solution
How about
Excel Formula:
=IF(D3="","",IF(F3="","Received","Shipped"))
Thank you Fluff, I appreciate the formula. I didn't think about changing mine to D3= "","",If... and getting rid of the >1/1/2021. So much to learn!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,588
Members
449,089
Latest member
Motoracer88

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