Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
disappearing collumns | Excel Discussion (Misc queries) | |||
Splitting text into 2 collumns | Excel Discussion (Misc queries) | |||
How do I use COUNTIF with two different criteria (2 collumns) | Excel Discussion (Misc queries) | |||
Totalling Collumns | Excel Worksheet Functions | |||
Collumns and rows | Excel Discussion (Misc queries) |