Hi I have 3 columns all containing country names.
For each row, I want to do a nested statement to show:
If all 3 countries (columns) = "UAE" then put "Local Servicing - UAE"
*If all 3 countries are the same then put "Local Servicing"
*If first 2 columns are UAE but column 3 is not then put "HUB"
otherwise put "HUB & Spoke",
I had some of it working but can't get those with an asterix to work? Any ideas please?:
Below doesn't work?
=IF(LEVEL@row = "DK", IF(AND([Servicing Country]@row = "UAE", [Fulfilment Country]@row = "UAE", [Employee Country]@row = "UAE"), "LOCAL SERVICING - UAE"), IF(AND([Employee Country]@row <> "UAE", [Servicing Country]@row = "UAE", [Fulfilment Country]@row = "UAE"), "HUB"))