Skip to main content

i will combine:

LEN({Long Text})

+

IF(LEN({Long Text})>280, “ ❌ Over Limit”, “ ✅ Under Limit”)


The result should be: example: 150 ✅ Under Limit

Put an ampersand between the two formulas. I’ll assume you want to include a space between the number and the checkmark/X so in this case you would add & " " &:


LEN({Long Text}) & " " & IF(LEN({Long Text})>280, "❌Over Limit", "✅Under Limit")


Put an ampersand between the two formulas. I’ll assume you want to include a space between the number and the checkmark/X so in this case you would add & " " &:


LEN({Long Text}) & " " & IF(LEN({Long Text})>280, "❌Over Limit", "✅Under Limit")


Thanks for the fast help!


second question:

IF(LEN({Brand})<50 & >2000, “ ❌ ”, “ ✅ ”& " " & LEN({Brand}) )


between it? how can i do that?


second question:

IF(LEN({Brand})<50 & >2000, “ ❌ ”, “ ✅ ”& " " & LEN({Brand}) )


between it? how can i do that?



  • i will also mark as X when a specific word writte example: “FORBIDDEN”


second question:

IF(LEN({Brand})<50 & >2000, “ ❌ ”, “ ✅ ”& " " & LEN({Brand}) )


between it? how can i do that?



Between what?



IF(FIND("Forbidden", {Field Name}),"❌")



Between what?



IF(FIND("Forbidden", {Field Name}),"❌")


i mean between both values


example <50 and >100 then mark TRUE


i mean between both values


example <50 and >100 then mark TRUE



IF(LEN({Description})<10, IF(LEN({Description})>20, “ ✅ ”, “ ❌ to long”), “ ❌ to short”)

but this dont works



IF(LEN({Description})<10, IF(LEN({Description})>20, “ ✅ ”, “ ❌ to long”), “ ❌ to short”)

but this dont works


i found the solution, but one last question?!

How can i create a list with forbidden words?

imagine a kind of Blacklisted words: shirt, hi, hello, test1, test2


IF(FIND(“shirt”, {Description}),“Error”)


i found the solution, but one last question?!

How can i create a list with forbidden words?

imagine a kind of Blacklisted words: shirt, hi, hello, test1, test2


IF(FIND(“shirt”, {Description}),“Error”)


Your formula is pretty close:


IF(OR(FIND("shirt",{Description}),FIND("hi",{Description}),FIND("hello",{Description})),"Error")


Basically, repeat the FIND() portion of the formula within an OR() function.


Your formula is pretty close:


IF(OR(FIND("shirt",{Description}),FIND("hi",{Description}),FIND("hello",{Description})),"Error")


Basically, repeat the FIND() portion of the formula within an OR() function.


but i have 123 words for my blacklist and more then one row to check, is there any easier method?

thanks!


but i have 123 words for my blacklist and more then one row to check, is there any easier method?

thanks!


That sounds a View to me.



That sounds a View to me.




explain me that please


Reply