Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In this great Macro, created by Micky (MVP), is there a way to cut and paste
the data from all the columns instead of copy and paste? I just want all the appended data in Column A". Sub Tony() Application.ScreenUpdating = False LR = ActiveSheet.UsedRange.Rows.Count LC = ActiveSheet.UsedRange.Columns.Count Ind = LR + 1 For C = 2 To LC For R = 1 To LR If Cells(R, C) < "" Then Cells(Ind, 1) = Cells(R, C) Ind = Ind + 1 End If Next Next Application.ScreenUpdating = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Box With REPLY appended To A Cell: What Is It ? | New Users to Excel | |||
File names appended with ~ plus alphanumeric characters | Excel Discussion (Misc queries) | |||
appended a cell, but need to keep decimal places | Excel Discussion (Misc queries) | |||
What does the '#' character mean when appended to a number? | Excel Programming | |||
Pivot Table DataFields are appended with a '2', why? | Excel Discussion (Misc queries) |