If statement not working

Can anyone see why this is not working. I keep getting #UNPARSEABLE.
=IF([Neighborhood Lots]@row = "Kinsley 50β", 45, IF([Neighborhood Lots]@row = "Kinsley 60β", 46, IF([Neighborhood Lots]@row = "Kinsley 70β", 47, IF([Neighborhood Lots]@row = "Kinsley 85β", 48, IF([Neighborhood Lots]@row = "Kinsley 100β", 49, IF([Neighborhood Lots]@row = "Hedgefield 50β", 43, IF([Neighborhood Lots]@row = "Hedgefield 60β", 44, IF([Neighborhood Lots]@row = "Stoneybrooke", 7F, IF([Neighborhood Lots]@row = "Woodland Creek 50β", 82, IF([Neighborhood Lots]@row = "Woodland Creek 60β", 83, IF([Neighborhood Lots]@row = "Woodland Creek 70β", 84, IF([Neighborhood Lots]@row = "Woodland Creek 85β", 85, IF([Neighborhood Lots]@row = "Woodland Creek 100β", 86, IF([Neighborhood Lots]@row = "Sturbride RB", 24, IF([Neighborhood Lots]@row = "Sturbridge Oaks", 25, IF([Neighborhood Lots]@row = "Sturbridge YC", 29, IF([Neighborhood Lots]@row = "Sturbride TR", 27, IF([Neighborhood Lots]@row = "Sturbridge PP", 28, IF([Neighborhood Lots]@row = "Wynrdige", 22, IF([Neighborhood Lots]@row = "New Park 50β", 92, IF([Neighborhood Lots]@row = "New Park 60β", 91, IF([Neighborhood Lots]@row = "New Park 75β", 90, IF([Neighborhood Lots]@row = "Summerlin", 94, IF([Neighborhood Lots]@row = "Camelot", 95, IF([Neighborhood Lots]@row = "Silver Hills", 26, IF([Neighborhood Lots]@row = "Cotton Terrace", 81, IF([Neighborhood Lots]@row = "Deer Creek", 65)))))))))))))))))))))))))))
Answers
-
Can you provide a screenshot of the formula open in the sheet as if you are about to edit it?
-
I hope you're well and safe!
At a glance, I can't see any issues. Have you double-checked the column names?
Try this and see if it makes a difference.
=
IF([Neighborhood Lots]@row = "Kinsley 50β", 45,Β
IF([Neighborhood Lots]@row = "Kinsley 60β", 46,Β
IF([Neighborhood Lots]@row = "Kinsley 70β", 47,Β
IF([Neighborhood Lots]@row = "Kinsley 85β", 48,Β
IF([Neighborhood Lots]@row = "Kinsley 100β", 49,Β
IF([Neighborhood Lots]@row = "Hedgefield 50β", 43,Β
IF([Neighborhood Lots]@row = "Hedgefield 60β", 44,Β
IF([Neighborhood Lots]@row = "Stoneybrooke", 7F,Β
IF([Neighborhood Lots]@row = "Woodland Creek 50β", 82,Β
IF([Neighborhood Lots]@row = "Woodland Creek 60β", 83,Β
IF([Neighborhood Lots]@row = "Woodland Creek 70β", 84,Β
IF([Neighborhood Lots]@row = "Woodland Creek 85β", 85,Β
IF([Neighborhood Lots]@row = "Woodland Creek 100β", 86,Β
IF([Neighborhood Lots]@row = "Sturbride RB", 24,Β
IF([Neighborhood Lots]@row = "Sturbridge Oaks", 25,Β
IF([Neighborhood Lots]@row = "Sturbridge YC", 29,Β
IF([Neighborhood Lots]@row = "Sturbride TR", 27,Β
IF([Neighborhood Lots]@row = "Sturbridge PP", 28,Β
IF([Neighborhood Lots]@row = "Wynrdige", 22,Β
IF([Neighborhood Lots]@row = "New Park 50β", 92,Β
IF([Neighborhood Lots]@row = "New Park 60β", 91,Β
IF([Neighborhood Lots]@row = "New Park 75β", 90,Β
IF([Neighborhood Lots]@row = "Summerlin", 94,Β
IF([Neighborhood Lots]@row = "Camelot", 95,Β
IF([Neighborhood Lots]@row = "Silver Hills", 26,Β
IF([Neighborhood Lots]@row = "Cotton Terrace", 81,Β
IF([Neighborhood Lots]@row = "Deer Creek", 65)
Did it work?
I hope that helps!
Be safe, and have a fantastic week!
Best,
AndrΓ©e StarΓ₯ | Workflow Consultant / CEO @ WORK BOLD
β Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up, Awesome, or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
AndrΓ©e StarΓ₯ | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E: andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
I did. the columns are the same. I will try yours and let you know. Thank you very much
-
This was causing the issue thus far. Still typing. Had to list it as "7F" and not just 7F.
-
SMARTSHEET EXPERT CONSULTANT & PARTNER
AndrΓ©e StarΓ₯ | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E: andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
That fixed it