Looping through HTML Table

HI,
need help regarding scenerio that is i am getting value from queue in a variable the value is "Emirati plan 250 " in a varaible .and i am getting “250” from this value “Emirati plan 250” and storing it in another variable to make switch cases. now how can i use foreach loop to loop through whole table and what will be the if condition so that recurring charges column in the attached picture when ever matches “250” and this value i am getting from “emirati plan 250”.when ever these recurring charge value matches the 250 it should click on the select tab.kindly help me out

Hi @goharmalik

if you are scraping in form of data-table(as dt)

for each row in dt

 row("Column_name").ToString whrer column_name may be "Offer eName,Recurring Charges,etc"
 if (row("Column_name").ToString == "250")
 Click OCR text ("select")  --->you can use other kind of Click other than OCR text