Here's my dilemma:
I have 2 excel sheets.
- One is a target sheet with already existing information
- One is a source sheet
I would need to match the used cells in sourcesheet column C to target sheet column A used cells, and copy 3 cells per row from source to target(to adjacent rows).
So, let's say I have "TESTUSER test" in one of the cells in sourcesheet column C, and the same name somewhere in a cell in target sheet column A. From the row where the name is in the sourcesheet, I would need to copy the A,B,C column cells(only from that row) data to the targetsheet's row where the name is in column A, to columns C,D,E. This same operation would need to be done for each name in the sourcesheet column C.
I have managed to get the needed values from both sheets with "For each" methods, but I have no idea how to match the data and make the copying based on that.