Skip to main content

Help with nested IF statements

  • December 20, 2021
  • 1 reply
  • 16 views

Forum|alt.badge.img+8

Hello! Here’s what I’m hoping to accomplish:

  1. If {Inventory Arrived?} = ‘Inventory Arrived’ and HAS a date in {When did Inventory Land?} use that date.
  2. If {Inventory Arrived?} = ‘Inventory Arrived’ and DOESN’T have a date, use {Updated Estimated Delivery Date} date
  3. If {Inventory Arrived?} = ‘Inventory Not Arrived’, use {Updated Estimated Delivery Date}

Thanks for your help!

1 reply

Forum|alt.badge.img+18
  • Inspiring
  • December 20, 2021

Hi Rachael. From what you wrote, there are only two options for the answer you want - {When did Inventory Land?} or {Updated Estimated Delivery Date}. So, you could use…

IF(AND({Inventory Arrived?}='Inventory Arrived', {When did Inventory Land?}), 
       {When did Inventory Land?}, 
       {Updated Estimated Delivery Date})

Let us know if works the way you want. Good luck.