Inserting rows macro help
Posted by Tom Urtis on January 31, 2001 6:02 PM
I need to enhance a sort macro by adding VBA code that inserts a blank row in between geographic regions. The VBA code must accommodate new data (records) being added to this list every day, so that each region always sorts and is then separated by a blank row. Example:
Before sorting:
A B
1 North 725
2 West 825
3 East 740
4 South 390
5 East 155
6 North 650
After sorting:
A B
1 East 155
2 East 740
3
4 North 650
5 North 725
6
7 South 390
8
9 West 825
Does anyone know what code can be added to my existing sort macro to make this happen? Thank you in advance for any assistance!!
Tom Urtis