So I need to show a msgbox like this from an excel where I have some cells with value numbers:
Col 1: “value first cell” , Col2:“value first cell” Row :“Number Row”
I have variables for each collum in a datatable and used an for each and an if but I don’t know how to make the condition in the if activity and in the message box.
Any ideeas, it will help me alot.
@Gabriel2
Pass your datatable to for each row activity,and inside the for each row put an message box and type as below,
“Col 1 :”+row(0)+" Col 2 : “+row(1)+” Row number : "+Counter.Tostring and after this message box , increment the counter in assign Counter = Counter+1.
Assign Counter as 1 before the for each row activity .