IF() statement not working

Hey everyone

So I am creating a simple IF() statement but it isn't working:

When I enter "1" it is not showing "Continue". Can someone help me, please?

Sophtee_0-1653383771774.png

Sophtee_1-1653383798161.png

Sophtee_2-1653383827694.png

 

 

Solved Solved
0 1 62
1 ACCEPTED SOLUTION

Hi @Sophtee .

Your Number column is Number type but in the IF statement you mentioned texttype ("1") and in this scenario no need [_THISROW]. Therefore, the code should be 

IF(
[Number]=1,"continue","error"
)

 

View solution in original post

1 REPLY 1

Hi @Sophtee .

Your Number column is Number type but in the IF statement you mentioned texttype ("1") and in this scenario no need [_THISROW]. Therefore, the code should be 

IF(
[Number]=1,"continue","error"
)

 

Top Labels in this Space