Hello everyone,
I tried to use multiple formulas, but for some reason it is working together (one-by-one they are working). What I want to do with this: I have a machine checking sheet, where the sheet send me a notification, if I work with any of my machines. Every machine has a group nr (1-5), what defines ow often I have to do the review. The times for every group: Group Nr 1: 243 days, Nr 2: 212 days, Nr 3: 182 days, Nr 4: 120 days, Nr 5: 90 days.
The format of the cells: The group Nr. is a drop down list, the Last check is date, and the output, what I want to get is also a date.
This is my formula:
=IF(AND([Group Nr]@row = "1"); [Last check]@row + 243), IF(AND([Group Nr]@row = "2"); [Last check]@row + 212), IF(AND([Group Nr]@row = "3"); [Last check]@row + 182), IF(AND([Group Nr]@row = "4"); [Last check]@row + 120), IF(OR([Group Nr]@row = "5"); [Last check]@row + 90)
The result is #UNPARSEABLE. What did I missed? How I should put functions together?
BR
Bence