#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Collumns

I have multiple collumns of information that I want to compile into a list.
The number of rows in each collumn are variable. SO I might have 3 entries
in a collumn today, while, tomorrow I may have 7.

Collumn A Collumn B
1 a
2 b
3
4

Ideally I want my list to look like
Collumn A
1
2
3
4
Collumn B
a
b

Allowing the starting point for collumn B to vary based on when Collumn A
actually ends. This list has to be printable, and I can't have large
spaces where blank information is just because an item was listed there last
week while today there is none.



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default Collumns

Try this simple macro:
Sub test()
Range("B1:B" & Columns("B").End(xlDown).Row).Cut _
Destination:=Range("A" & Columns("A").End(xlDown).Row + 1)
End Sub

Regards,
Stefi


€˛Static€¯ ezt Ć*rta:

I have multiple collumns of information that I want to compile into a list.
The number of rows in each collumn are variable. SO I might have 3 entries
in a collumn today, while, tomorrow I may have 7.

Collumn A Collumn B
1 a
2 b
3
4

Ideally I want my list to look like
Collumn A
1
2
3
4
Collumn B
a
b

Allowing the starting point for collumn B to vary based on when Collumn A
actually ends. This list has to be printable, and I can't have large
spaces where blank information is just because an item was listed there last
week while today there is none.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
disappearing collumns Trintrin Excel Discussion (Misc queries) 1 April 4th 06 09:20 PM
Splitting text into 2 collumns exceluser2 Excel Discussion (Misc queries) 4 March 26th 06 07:26 PM
How do I use COUNTIF with two different criteria (2 collumns) Juran Excel Discussion (Misc queries) 5 February 9th 06 01:29 PM
Totalling Collumns Stormingerman Excel Worksheet Functions 1 December 19th 05 01:45 AM
Collumns and rows smintey Excel Discussion (Misc queries) 2 February 15th 05 05:10 PM


All times are GMT +1. The time now is 05:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"