I have a tablle inside a terminal, with the columns as follows:
First Name Last Name Balance Status Paid
Considering that I need to check if one or more rows have the status column populated, what is the fastest possible method? Considering I can do get text and have a text string that contains all the information?
You can try to loop through your data from that column and compare each element with that empty string value.
From other perspective, the values inserted in that column have different length from one to another?
Use str.Split({Environment.Newline,vbcrlf},SplitStringoptions.RemoveEmptyEntries) - this will give you each row item as a liat item…loop through each row and check the above condition on count