I'm trying to use a logical formula to return a numeric value based on the drop down selection in another column.
For example, if column X contains Tier 1, insert in column Y a value of 1
If Tier 2, return a value of 2
If Tier 3, Return a value of 3
This is the formula I'm trying to use and I get an unparseable error
=IF(Client Tier@row Tier 1, "1", IF(Client Tier@row Tier 2, "2", IF(Client Tier@row Tier 3, "3"))
What do I need to change?
Thank you!!