i need to compare two excel files which have two or more columns
@ Jan_Brian_Despi
steps i have done
1.readrange
2.foreach row
3.if
used if in "then "for comparing these columns,i have assign output of match and mismatch for 3 columns iam comparing with
4.i have created datatable activity
5.read range
my query is where can i get the output of match and mismatch in then part
is my apporcah is correct for adding a column of status? please help me its urgent!thank you
Buddy @priyankavivek
Your workflow looks good buddy…
Logic will work as only if the first gets passes it will get to the next if or will iterate through the next row …so the same in second if but has a assigned activity…it will work buddy…
Now you need to concentrate on adding the status to the excel…
Use write cell with input like if you want to enter in D colum put like in range
“D”+counter.tostring
Where counter is integer variable with default value of 1
Then after this write cell activit, increment the counter with +1 like this
Counter = counter+1
Buddy may i know why we use add data row here… as you were expecting to update each cell of a column once after validating with if condition and that can done with a write cell activity and assign activity, both within for each row loop buddy as already mentioned above
Buddy @priyankavivek
in write cell activity mention the column name buddy along the range like
“C”+counter.ToString
with another write cell next to the above
“D”+counter.ToString…
so after this write cell activity we need to increment the counter value from default value of 1 to its next value like this using an assign activity
counter = counter + 1
where counter is a variable of type int32 defined in variable panel with default value of 1
like this buddy