A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Have you tried it? Hope all goes well.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi I need help!!! I am trying to create a formula to calculate a future date based on urgency, for instance if the urgency is " 2 day "I want it to place a date 2 days from referral date in a column, then if "Routine" a date 6 weeks from referral date and "asap" would be 2 weeks from referral date. Referral date is in column E and the urgency is in column I . The column i want the target date to enter is column M.
I've tried if and then function without success.
Any Tips
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Have you tried it? Hope all goes well.
In M2:
=IF(E2="", "", E2+IF(LOWER(I2)="routine", 42, IF(LOWER(I2)="asap", 14, IF(LOWER(I2)=" 2 day ", 2, 0))))
(Is it really " 2 day "? Or should it be "2 day"? If the latter, modify the formula)
Fill down.