Help with “st””nd””rd””th”.... about 1st, 2nd, 3rd

Hi, I’m trying to make the formula to show “1st”, “2nd”, “3rd” then 4 to 19 are “th”, as well as 24th to 30th… I found the solution for 1st, 2nd and 3rd… with this formula: $#Dd#==1?100:0$|$#Dd#==21?100:0$|$#Dd#==31?100:0$… but if I try individual numbers for the “th” it would make too much data for the watch to load and make it slow, is there a way that I can say like $#Dd#=5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,24,25,26,27,28,29,30?100:0$

But simplified?

Thank you!

Hi @Nerioalberto ,

Try this: $#Dd#>=4&&#Dd#<=19?0:100$

Enjoy,
Sirhc

Thank you so much… I’ll try it right away