I’m new to Ui Path and working on datatable.
I have a query to get the Column name based on a string value.
From the above, I want to get the complete row value in which contains(“How”).
Can have multiple rows which contains (“How”), I want the row values as concatenated string and I dont know the column index/name(can vary).
So you are first going to loop through the Rows, then the Columns, to search every item in the DataTable.
After that, you are going to check for the “How” word, if that word is found somewhere, you are going to use String.join(“,”,Row.itemArray) to get the whole Row value.