Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well, one way, based on your existing pattern:
Dim rDest As Range With Sheets("Sheet2") Set rDest = .Cells(.Rows.Count, 1).End(xlUp).Offset(1, 0) End With rDest.Resize(1, 3).Value = Application.Transpose( _ Sheets("Sheet1").Range("B2").Resize(3, 1).Value) In article , Kevin wrote: If this is what I have where do I insert your suggestion? Range("B2").Select Selection.Copy Sheets("Sheet2").Select Range("A2").Select ActiveSheet.Paste Sheets("Sheet1").Select Range("B3").Select Application.CutCopyMode = False Selection.Copy Sheets("Sheet2").Select Range("B2").Select ActiveSheet.Paste Range("B17:B18").Select Sheets("Sheet1").Select Range("B4").Select Application.CutCopyMode = False Selection.Copy Sheets("Sheet2").Select Range("C2").Select ActiveSheet.Paste Range("C13:C14").Select Sheets("Sheet1").Select End Sub "JE McGimpsey" wrote: One way: Dim rDest as Range With Sheets("Sheet2") Set rDest = .Cells(.Rows.Count, 1).End(xlUp).Offset(1, 0) End With copy to rDest This assumes that column A will always be populated in a populated row - change to suit. In article , Kevin wrote: I created a macro that is assigned to a "submit" button. When the button is selected the data transfers to the second worksheet. How do I make the data insert in the next empty row on the second worksheet? I appreciate anyone's help on this. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is there an formula to reverse the order of a number sequence? | Excel Discussion (Misc queries) | |||
Indicate missing number in a sequence (Part II) | Excel Discussion (Misc queries) | |||
How do I reverse the order (sequence) of a column of data in Excel | Excel Worksheet Functions | |||
2 part question - macro / command button | Excel Discussion (Misc queries) | |||
Daily Macro to Download Data, Order and paste in order | Excel Worksheet Functions |