Looking for some help creating an macro to automate a task.
The excel file I am working with contains two (2) tabs: 1) Upload Sheet and 2) Database Sheet. The Database Sheet contains a large list of names (reference column B in example below). We use Column A to select the desired name (reference "X"s in example below) to be transferred to the Upload Sheet.
Looking for a macro that will copy all names in Column B identified with a non-blank cell in Column A of the Database Sheet to Column A of the Upload Sheet. See example below
Ideally there are no blank rows in the Upload Sheet after copying.
DATA BASE SHEET
UPLOAD SHEET AFTER MACRO Result
The excel file I am working with contains two (2) tabs: 1) Upload Sheet and 2) Database Sheet. The Database Sheet contains a large list of names (reference column B in example below). We use Column A to select the desired name (reference "X"s in example below) to be transferred to the Upload Sheet.
Looking for a macro that will copy all names in Column B identified with a non-blank cell in Column A of the Database Sheet to Column A of the Upload Sheet. See example below
Ideally there are no blank rows in the Upload Sheet after copying.
DATA BASE SHEET
COLUMN A | COLUMN B | |
---|---|---|
Row 3 | X | John |
Row 4 | Frank | |
Row 5 | X | Bill |
UPLOAD SHEET AFTER MACRO Result
COLUMN A | |
---|---|
Row 2 | John |
Row 3 | Bill |