Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

IF statement does not work properly

Topic Labels: Community
Solved
Jump to Solution
2511 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Jerrel
4 - Data Explorer
4 - Data Explorer

I have a survey set up with 5 of outcomes depending on the total amounts of points. To assign a certain score to a certain outcome I used the IF statement. See attached files. It does not work properly for at 60 points it should show 'Extreme angst'.

Any thoughts?

Thanks.

 

 

 

1 Solution

Accepted Solutions
Ben_Young1
11 - Venus
11 - Venus

Hey @Jerrel

Try this:

IF(
    {Score},
    IF(
        {Score} <= 15,
        "Geen angst",
        IF(
            AND({Score} > 15, {Score} <= 25),
            "Milde angst",
            IF(
                AND({Score} > 25, {Score} <= 35),
                "Gematigde angst",
                IF(
                    AND({Score} > 35, {Score} <= 45),
                    "Hevige angst",
                    IF(
                        AND({Score} > 45, {Score} <= 60),
                        "Extreme angst"
                    )
                )
            )
        )
    )
)

Ben_Young1_1-1676596150052.png

 

 

See Solution in Thread

2 Replies 2
Ben_Young1
11 - Venus
11 - Venus

Hey @Jerrel

Try this:

IF(
    {Score},
    IF(
        {Score} <= 15,
        "Geen angst",
        IF(
            AND({Score} > 15, {Score} <= 25),
            "Milde angst",
            IF(
                AND({Score} > 25, {Score} <= 35),
                "Gematigde angst",
                IF(
                    AND({Score} > 35, {Score} <= 45),
                    "Hevige angst",
                    IF(
                        AND({Score} > 45, {Score} <= 60),
                        "Extreme angst"
                    )
                )
            )
        )
    )
)

Ben_Young1_1-1676596150052.png

 

 

Jerrel
4 - Data Explorer
4 - Data Explorer

Hi Ben_Young1,

It works! Thank you so much!

Regards,

Jerrel