Mar 30, 2022 07:21 PM
Here is my formula
IF({Dept} =Bath, “8.5”, IF({Dept} =Win, “10”, IF({Dept} =ODL, “0” ) ) )
My objective - if field “Dept” is Bath then 8.5, if it is Win then 10, if it is ODL then 0
Mar 30, 2022 08:07 PM
Welcome to the Airtable Community!
You need to put quotes around your text strings and not the numbers. You can also use SWITCH instead of nested IFs.
SWITCH( {Dept},
"Bath", 8.5,
"Win", 10,
"ODL", 0
)
Mar 30, 2022 08:47 PM
I apologize - this is probably a dumb question… do I need to take spaces out. If I copy and paste I get an error.
Mar 30, 2022 09:02 PM
Looks like some curly quotes snuck in when I was typing on my phone. I straightened them. You can try copy/pasting again.