Error : the function "if" must have 3 arguments but has 2
Find more posts tagged with
Sort by:
1 - 1 of
11
Sort by:
1 - 1 of
11
Hi @rosie you are missing the last part of the last if
if(Score > 0,
"positive",
if(Score < 0, "negative",
if(Score == 0, "neutral","" )))
What happens if the third if is false?
What happens if the third if is false?
What happens if the third if is false?