Forum Discussion
divumj
1 year agoHelper I
Data filtering and deleting basis tect
GM All
I am looking for a solution where I would like to find specific text in one column that to first occurence as I have multiple values in same column.
Once it identified we need to delete all the data above that. For e.g. I am looking for text having abc and I have first occurence on row 5000 having field 123abc.
6 Replies
- AlienSxSuper User
Table.Skip(your_table, (x) => not Text.Contains(x[column_name], "specific_text")) - divumjHelper I
This will remove entire data... requirment is to find it and remove all data above that , that to for first occurence...
As my data had multiple text having that data and we don't want to remove all data...only for the first one from the top