Forum Discussion
VBA - Splitting worksheet by Dept
- Aug 12, 2018
I do not modified the program but just insert more comment for the changes. Hope you can learn it.
You may refer to the attached file. (Just wonder that xlsm-file are allowed to upload)
The program will determine whether a department is "new" and then create the corresponding worksheets. I myself prefer to create a blank template and then copy the template in case it is a "new department" so that you need not to concern the formatting.
For each output, the cell J4 is counting the row number in the sheet. Since I am not sure that your real file consists of other worksheets or not, I cannot clear that contents. You may delete it manually. This procedure can be solved if you already have the list of departments. In this case, you can create worksheets (or copy from template) according to the list and then at end delete J4 for each worksheet corresponds to the department.
Hope that it is helpful to you.
Hi Man
Thank you for this I am very grateful. It works brilliantly. I have a few questions regarding this code. The data file was a test file.
Can I ask when I am working with these sort of files the range of the data will be different ie the data might start in cell A1 or P1. The number of columns used would be different ie the data may go from column K to column U. The number of rows will also vary depending on the data. The subtotal as a result would be in different cells each time I run the report.
What part of this code needs to change in order to reflect the above variations.
Look forward to your reply.
Zia
- siaparAug 20, 2018Copper Contributor
I'm trying to remove it from this section
I'm sending a photo - siaparAug 20, 2018Copper ContributorIn the Visual Basic section of the Excel file
I added a plugin
And now I need to clean it up - Man Fai ChanAug 12, 2018Iron Contributor
You have to understand the range and cells.
Range("J4") means the cell J4
Range("E" & r_CS &":H" & r_CS) represents the cells from column E to column H in the r_CS-th row.
On the other hand, we may consider cells as well.
Cells(1,2) means the cell in 1st row and 2nd column, i.e. the cell B1
You may also represent it as Cells(1,"B") in case you don't want to count the order of letters.
- rubenmac46gmailcomJan 05, 2019Copper Contributoragrgar
- Zia SiddiqueAug 12, 2018Copper Contributor
Hi Man
Thank you for the reply. I have tried to follow your instructions but I can't get it to work. I have changed the location of the data. Can you have a look and tell me what need to change in order to get this to work again. Please could you add additional comments to the VBA code so I can see what you are changing in order to make the VBA code work.
Thank you in advance.
Zia
- siaparAug 20, 2018Copper ContributorI've created an Excel file and added two functions to it
Functions other than the standard Excel functions, these functions are in the official language of my country.
These functions are visible in the Visual Basic section that is displayed with EFT and F11.
But now I'm trying to remove these provided functions
Which is registered in this section but the deletion option is inactive in this section