Link to the sheet:
https://app.smartsheet.com/sheets/2VgXpPQp84VmwJhcMhmG5Mp993jXFqgfMJ9cqGw1
Trying to make a sheet that auto populates a timeline of dates based on two columns that have multiple options. The formula below in the Decal column works if one option is selected, but I need it to work if Bone@row changes from Sternum to one of the other drop down options and also change if the Species column changes as well as different species and bone combinations require different dates.
=IF(Bone@row = "NA", "NA", IF(AND(Species@row = "Rat", Bone@row = "Sternum"), WORKDAY(Fixation@row, 1, {KAN Holidays Range 1})))
The column that has the variable date is the Trim/Process column which may be 1, 2, or 3 days after the date in the Decal column (excluding weekends and a referenced holiday sheet).
I also need the Trim/Process column to accommodate the possibility for the the Decal column to be NA which means it has to pull it's date from the Fixation column instead of the Decal Column so I don't get the #INVALID DATA error.
Basically, I think I need a long If Then that just contains all the combinations to populate the dates based on the two selected options in Bone and Species columns.