I Have Multiple CSV Row Text in my Spreadsheet Column After Get Column I want to find specific string in all CSV Row Text list . After Find I want CSV Row Text list & List index
Is your data in a Google Spreadsheet?
Use sql to query your table
To get more help, provide a few rows of your table and explain more in detail what you like to get
I have a column in which each row of the column contains a csv row list, so after getting the column I have to search for a specific string one by one in each csv row text list and when I find it then I have to get that list and its index.
Since I had nothing to do, here it is
(Hoping it’s what you want)
We simply transform the CSV text into a listOfLists, and with a procedure, we cycle through each row and column.
If the value we’re looking for (valueToSearch) matches the one we’re targeting (currentValue), we save its column (columnNumber) and row index (rowNumber) in a list that is returned by the procedure.