Written by

Question Jason Lewins · Oct 14, 2025

Data Transform - Looking for two specific pieces of text

Hi,

I have the following transform working but i also want to add another string of text for it to look for but i'm unsure of how to write this in. The two bits of text are "NOT DECTECTED" and "Negative"

Comments

Enrico Parisi · Oct 14, 2025

Just add another "if" within the "else" block?

0
Jeffrey Drumm · Oct 14, 2025

Instead of ..Contains() as the outer method, use:

..RegexMatch(..ToUpper(source.{PIDgrpgrp(k1).ORCgrp(k2).OBXgrp(2).OBX:ObservationValue()}),"NOT DETECTED|NEGATIVE")
0