I need to write string with selected row

Hi guys
can anyone help me about this query I need to select column “STORE NAME” and as per my dynamic variable bring the value , beside there one other column for remark i need to write there “YES” I need to use select query please check my screen
shot for better understanding
dt3.Select(“STORE NAME='”+store_name+“'”)(0).Item(“With Processed (Y/N)=‘Yes’”)image_2021-02-09_190738

Try this:

dt3.Select("[STORE NAME]='"+store_name+"'")(0).Item("With Processed (Y/N)") = "Yes"
1 Like

which activity can i use to direct fire this query

Use the Assign activity.

image