Hello yâall,
Iâm writing out a formula that will generate dates. The dates will be based off a different calendar field in my table, and will be adjusted based on a dropdown menu. There are two formulas Iâm attempting to use. The first is as follows:
IF({Recording Date},DATEADD({Recording Date},SWITCH({Status},âOutlinedâ,-3,âScript Writing (including editing)â,0,âReview Outlineâ,-2,âReview Story Draftâ,-2,âReady to be Recordedâ,0),âdaysâ))
With the goal being to adjust the date off of the âRecording Dateâ based off the âSatusâ (the drop down menu). This has worked well. However, when I tried a similar approach for a column called âUpload Date,â the formula doesnât work. Here it is:
IF({Upload Date},DATEADD({Upload Date},SWITCH({Status},âRecorded and Ready to be Editedâ,-5,âRequests for Re-recordsâ,-3,âSound Edited and Ready for Reviewâ,-2,âComplete and Ready to be Uploadedâ,0),âdaysâ))
Do you by any chance see an error in how Iâve written out this second formula?

