Hello, I’m trying to figure out how to express the below in Airtable.

I took inspiration from this thread
This is what I have so far…
IF (
{CALCULATED SCORE} < 1,
“0”,
IF(
{CALCULATED SCORE} < 2.2,
“⭐️”,
IF(
{CALCULATED SCORE} < 4.5,
“⭐️⭐️”
IF(
{CALCULATED SCORE} < 6.9,
“⭐️⭐️⭐️”
IF(
{CALCULATED SCORE} < 8.9,
“⭐️⭐️⭐️⭐️”
IF(
{CALCULATED SCORE} < 10,
“⭐️⭐️⭐️⭐️⭐️”
)
)
)
)
)
)

