Hello,
I have two worksheets ("TransCode" and "Allocations"), and I would like to look up the values in the "TransCode" table from the first column ("Transaction Code"). Wherever there is a flag ("X"), I want to enter that in the appropriate column in the Allocations worksheet.
TransCode (This list could constantly grow - would like the loop to stop at the last row) :
Allocations Table
I am trying to create a simple and fast code.
I appreciate any help you can provide.
Best,
J
I have two worksheets ("TransCode" and "Allocations"), and I would like to look up the values in the "TransCode" table from the first column ("Transaction Code"). Wherever there is a flag ("X"), I want to enter that in the appropriate column in the Allocations worksheet.
TransCode (This list could constantly grow - would like the loop to stop at the last row) :
Transaction Code | Data 1 | Flag |
---|---|---|
ABC | Information | X |
DEF | Information | |
GHI | Information | X |
JKL | Information | X |
MNO | Information |
Allocations Table
Transaction Code | Data 1 | Data 2 | Data 3 | Flag |
---|---|---|---|---|
DEF | Information | Information | Information | |
JKL | Information | Information | Information | The code will place "X" |
ABC | Information | Information | Information | The code will place "X" |
MNO | Information | Information | Information | |
GHI | Information | Information | Information | The code will place "X" |
I am trying to create a simple and fast code.
I appreciate any help you can provide.
Best,
J