I have run out of IF multiple statement within SharePoint list calculated column, I still have more sites to add.
I'm looking into a different way to build IF statement to fit all my sites (30 in total).
All sites refer to one of this three values: 5, 10, 15.
Trying this formula as an example:
IF(AND([Site_induction] = "UKI- Services- Chester TCC",OR([Site_induction] = "UKI- Services- Morden" TCC [Speed_limit] = "5mph")), "1", IF(AND([Site_induction] = "UKI- Services- Liverpool TCC",OR([Site_induction] = "UKI- Services- Manchester" TCC [Speed_limit] = "10mph")), "1", IF(AND([Site_induction] = "UKI- Services- Glasgow TCC",OR([Site_induction] = "UKI- Services- Oxley" TCC [Speed_limit] = "15mph")), "1",, "1", "0")))))
Any suggestions?