I have a column called job type it’s a list of services we provide. I’m trying to auto populate the “Next Service Date” field based on job type and last service date.
so something like if job type = dryer then add 365 days to the last service date. Or if the job type = air duct cleaning then add 1095 day to the last service date.
Just as a note - the last service date column is a date field. I can change that if necessary.
I got it to work with IF({Job Type} = “Dryer”, DATEADD({Last Service Date},2, ‘year’)
but now I’m trying to add an ELSE IF (I think) for this: IF({Job Type} = “Air Ducts”)DATEADD({Last Service Date},3, ‘year’))
So basically if the job is a dryer we add on 2 years until next service, if it’s air ducts we add 3 years until next service.