I have two worksheets. I want to perform a query where it creates a single column with all the data from several columns from another sheet.
"T# Laser File" - This is the sheet I want the data to go to, deleting everything that was previously there, and entering the new data.
"DB - Printing Labels" - This is the sheet I want it to pull the data from.
The columns have headers, so I want it to ignore row 1. I want the macro to take all the data from Columns: a, i, j, and put it in column A on "T# Laser File" in order.
Example:
"DB - Printing Labels"
Row 1 has the following in rows A, I, J - 123456 XXX 001
Row 2- 9876 zzz 004
Row 5- 4567 CCCC 006
Will result in the following data in column A on sheet "T# Laser File":
123456
XXX
001
9876
zzz
004
4567
CCCC
006
I want it to ignore the row entirely if there is no data in column A of "DB - Printing Labels" for the corresponding row.
Is this possible?
"T# Laser File" - This is the sheet I want the data to go to, deleting everything that was previously there, and entering the new data.
"DB - Printing Labels" - This is the sheet I want it to pull the data from.
The columns have headers, so I want it to ignore row 1. I want the macro to take all the data from Columns: a, i, j, and put it in column A on "T# Laser File" in order.
Example:
"DB - Printing Labels"
Row 1 has the following in rows A, I, J - 123456 XXX 001
Row 2- 9876 zzz 004
Row 5- 4567 CCCC 006
Will result in the following data in column A on sheet "T# Laser File":
123456
XXX
001
9876
zzz
004
4567
CCCC
006
I want it to ignore the row entirely if there is no data in column A of "DB - Printing Labels" for the corresponding row.
Is this possible?