Hi,
iam comparing sheet 1 cells A,B,C to Sheet2 Cells A,B,C
if both cell contains same value then it copy C & D cell from sheet 2 to sheet 1
like this
Can anyone help me!?
Hi,
iam comparing sheet 1 cells A,B,C to Sheet2 Cells A,B,C
if both cell contains same value then it copy C & D cell from sheet 2 to sheet 1
like this
Can anyone help me!?
Hey!
Try like this
CurrentRow1(0).ToString.Trim.Equals(CurrentRow2(0).ToString.Trim) or CurrentRow1(1).ToString.Trim.Equals(CurrentRow2(1).ToString.Trim)
In then block take 3 write cell activities
Write Cell - 1
Value - CurrentRow(2).ToString.Trim
Range - “C2:C”+(intCounter+1).ToString
Write Cell - 2
Value - CurrentRow(3).ToString.Trim
Range - “D2:D”+(intCounter+1).ToString
Write Cell - 3
Value - CurrentRow(2).ToString.Trim
Range - “E2:E”+(intCounter+1).ToString
Take one assign activity and pass the value like this
intCounter = intCounter+1
Try this and let me know
Regards,
NaNi