Macro to divide column into multiple columns
Closed
Cosmo71
-
Aug 21, 2010 at 12:27 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Aug 24, 2010 at 08:10 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Aug 24, 2010 at 08:10 AM
Related:
- Macro to divide column into multiple columns
- Display two columns in data validation list but return only one - Guide
- Tweetdeck larger columns - Guide
- How to delete multiple files on mac - Guide
- How to lasso multiple objects in photoshop - Guide
- Allow multiple downloads chrome - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 24, 2010 at 08:10 AM
Aug 24, 2010 at 08:10 AM
1. First find out how many rows you have
2. for each column that you need find how many rows will fit
so for first column you have
myrows = worksheetfunction.roundup(50003/5, 0)
myrows would be 1001
so populate 1001 rows there
then for next column you have now
myrows = worksheetfunction.roundup(40002/4, 0)
and so on
2. for each column that you need find how many rows will fit
so for first column you have
myrows = worksheetfunction.roundup(50003/5, 0)
myrows would be 1001
so populate 1001 rows there
then for next column you have now
myrows = worksheetfunction.roundup(40002/4, 0)
and so on