Is there an "else" operator for custom strings?

I’d like one of my strings to display the play count, and say “play” after the number if it’s 1 and “plays” after for anything other than 1.

For example:

1 play

2 plays

0 plays

I’m trying to create a custom string and have gotten as far as showing “plays” if the playcount != 1, but is there a sort of else operator I can use to have it show “play” if playcount == 1?

You don’t need else, just add the 2 blocks with the proper display rules, since the rules are not overlapping there will only be one block visible…

1 Like