Thanks much, both of the individual filters bring the records wanted.
My hurdle now is I want both conditions to apply.
I have this now.
@or(
not(contains(split(item(), ',')[0], 'D')),
startsWith(split(item(), ',')[1], variables('varZeros'))
)
varZeros is "0000"
The problem is that both conditions apply to a single row.
Here is what I mean
Exclude the first row as it has a "D" in Column0 even though it does have 4 zeros in Column1
Exclude the second row as it does not have four zeros or a "D"
Include 3 and 4 as they have four zeros and no "D"
"D,0000216813,PRHD,
",551000-001,PRHF,
",0000216834,PRHD,
",0000179169,PRHD,
I have researched but can not locate my scenario...
Thanks