Skip to main content

Hello, I'm trying to find the index (row and column) of a cell within a data table that contains a specific text pattern. For example, I need to find all cells that contain the value "Redirection =>" rather than an exact match of the entire cell. The search action I've tried only works for exact values, not for partial matches. How can I achieve this?

@LAHCEN AGLAGAL You will need to loop through the table using numeric indices to keep track of the row and column of the matching value. Use an IF, string condition, if $yourvariable$ Includes "matching string". The Includes operator checks if the source string contains the string you're looking for.