EngSantiago
New Member
- Joined
- Mar 19, 2014
- Messages
- 17
- Office Version
- 365
- Platform
- Windows
Hi all,
I currently have a vba macro that creates individual report for based on the data on each column. The macro will run until cell (1,i) is empty.
However, I don't always need all of the reports. Therefore, I would like to modify the above code to run the code only for a selected group columns. I tried hiding the some columns but that doesn't work
. What would be the easiest way to accomplish this? Can someone point me into the right direction?
Thanks!
I currently have a vba macro that creates individual report for based on the data on each column. The macro will run until cell (1,i) is empty.
Code:
Do While Workbooks("Database.xlsm").Sheets("Assemblies_List").Cells(1, i) <> ""
However, I don't always need all of the reports. Therefore, I would like to modify the above code to run the code only for a selected group columns. I tried hiding the some columns but that doesn't work
Thanks!