Hi all. We've found someone has been creating item...
# general
d
Hi all. We've found someone has been creating items and including line breaks in salesdescription fields, which is causing issues with scripted behaviour. Does anyone know offhand how to define a line break in a search criteria? It's a plain text break, rather than an HTML <br>.
j
on advanced pdf, you can sort these out by replacing \n with <br> So you could try searching for \n? Not sure if it will work in saved search
d
Thanks Jon. That was the first thing I tried. I've now found that INSTR({salesdescription}, CHR(10)) is not 0 does the trick.
👍 1
j
👍