Hi,
I was iterating through a datatable and checking if it contains “ey” in one particular column.
I used . contains and if an cell value has “ey”, i filter it out.
But the issue is that if another cell having value “Hey”( which shld NOT be filtered out) is also being filtered out because it has “ey” in it.
Example is stated below:
ColumnA
Hey
Hi
Ey
Hi ey
Where columnA is a header and has 4 rows.
The desired output is
ColumnA
Hey
Hi
Hi ey
Any idea?
2 posts - 2 participants