Hello,
Trying to create an "if" statement for a looped process based on information in a web-scraped datatable. I've tried the following variable references with no luck:
(For reference: %WebDataTable% is the variable name for the web-scraped datatable, and %ColumnVariable% and %RowVariable% are variables which return a specific number)
- %WebDataTable[ColumnName]% = "Value"
- %WebDataTable["ColumnName"]% = "Value"
- %WebDataTable['ColumnName']% = "Value"
- %WebDataTable[RowNumber][ColumnNumber]% = "Value"
- %WebDataTable[%RowVariable%][%ColumnVariable%]% = "Value"
- %WebDataTable[RowVariable][ColumnVariable]% = "Value"
Just trying to pull all records in the datatable in which the column value I have in mind is equal to specific word - basically a filter of sorts.
Thanks for any assistance.