Jacob
06/26/2020, 7:55 PMdbarnett
06/26/2020, 8:13 PM<
Jacob
06/26/2020, 8:24 PMGregory Jones
06/26/2020, 8:30 PM<
to a text field on a customer record. Same results: 0 I changed it to =
thinking perhaps it is because they are both comparison operators that causes the formula to not work. the =
worked. very bizarredbarnett
06/26/2020, 8:39 PMCASE WHEN {custrecord_fieldId} = 'BasePack0001<>' THEN 1 ELSE 0 END
now, but still getting 0sGregory Jones
06/26/2020, 8:42 PMcase when {notes} LIKE '%<%' THEN 1 ELSE 0 END
to test if it would pick up the <
which it didn't. I also tried INSTR({notes}, '<')
and got 0 as well. Then when I switched over to =
i was getting accurate results for both formulasdbarnett
06/26/2020, 8:54 PM=
character instead of <
?Gregory Jones
06/26/2020, 8:56 PM<
in the field i was searching on with =
, then updated my formulas to search for =
instead of <
and that's when it worked.dbarnett
06/26/2020, 8:58 PM<
or >
symbols it doesn't like. I assume =
and many others behave as expectedGregory Jones
06/26/2020, 9:00 PMGeorge McMullen
06/26/2020, 9:34 PMdbarnett
06/26/2020, 9:53 PMdbarnett
06/26/2020, 9:54 PMGeorge McMullen
06/26/2020, 11:12 PMJacob
06/30/2020, 1:31 AM