beginvbaanalyst
Board Regular
- Joined
- Jan 28, 2020
- Messages
- 141
- Office Version
- 365
- Platform
- Windows
Hi Everyone,
I had an idea to create a multi step process for my business.
Created a custom template provided below:
I want to pull data from column that have a yellow box and assortments (A:B) to whatever row it's filled down to. Paste this data into a new sheet, continue to execute for (E:F), (I:J), (M:N) and etc then remove duplicate values for a validation step at the very end.
Would my code look something like this?
Range ("A2:B", Range("B" & Row.Count).End(xlUp)).Row
Sheet("Sheet1").Copy after:=("Sheet1")
ActivateSheet.Name = "PV LIST"
Worksheets('Sheets1").Activate
Range ("E2:F", Range("F" & Row.Count).End(xlUp)).Row
^I think this is completely wrong but I hope I have some sort of idea
I would like to paste below the data I took from A and B without it removing anything into my new sheet.
Is this possible?
I had an idea to create a multi step process for my business.
Created a custom template provided below:
I want to pull data from column that have a yellow box and assortments (A:B) to whatever row it's filled down to. Paste this data into a new sheet, continue to execute for (E:F), (I:J), (M:N) and etc then remove duplicate values for a validation step at the very end.
Would my code look something like this?
VBA Code:
Sheet("Sheet1").Copy after:=("Sheet1")
ActivateSheet.Name = "PV LIST"
Worksheets('Sheets1").Activate
Range ("E2:F", Range("F" & Row.Count).End(xlUp)).Row
^I think this is completely wrong but I hope I have some sort of idea
I would like to paste below the data I took from A and B without it removing anything into my new sheet.
Is this possible?