I would like to have a column in which the date is calculated from the values in three other columns.
I have one column named “Last Test Date”, a second column called “Type”, a third column called “Insulation” and the forth column called “Next Test Date.
I need the “Next Last Date” column to be calculated so that it updates automatically when the “Last Test Date” date is changed, and basis the output value on “Type” + “Insulation” + “Last Test Date” values.
e.g.
- if “Last Test Date” equals 1/1/2021 and “Type” equals Winch, then “Next Date Test” equals 1/4/2021.(3 monthly)
- if “Last Test Date” equals 1/1/2021 and “Type” equals Cage, then “Next Date Test” equals 1/6/2021. (6 monthly)
- if “Last Test Date” equals 1/1/2021, “Type” equals Winch, and Insulation<=500 then “Next Date Test” equals 31/1/2021. (monthly)
- if “Last Test Date” equals 1/1/2021, “Type” equals Cage, and Insulation <=500 then “Next Date Test” equals 1/4/2021. (3 monthly)
Any assistance is greatly appreciated.