Pulling ordered parts from sheet 2 and insert
Closed
AviationGuy
-
Jun 19, 2011 at 11:25 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jun 20, 2011 at 10:52 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jun 20, 2011 at 10:52 PM
Related:
- Pulling ordered parts from sheet 2 and insert
- Tentacle locker 2 - Download - Adult games
- Fnia 2 - Download - Adult games
- Euro truck simulator 2 download free full version pc - Download - Simulation
- Feeding frenzy 2 download - Download - Arcade
- Red dead redemption 2 free download - Download - Action and adventure
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Jun 20, 2011 at 10:52 PM
Jun 20, 2011 at 10:52 PM
the letter A,B etc are not clear . are they row indicators. anyhow I ignore those letters . I have also deleted column heading ROW from sheet 1 and sheet 2. try this macro. (If necessary modify the macaro)
sub test() Dim dest As Range, j As Integer For j = 1 To 2 Worksheets(j).UsedRange.Copy With Worksheets("sheet3") Set dest = .Cells(Rows.Count, "A").End(xlUp).Offset(1, 0) dest.PasteSpecial End With Next j With Worksheets("sheet3") .UsedRange.Sort key1:=Range("A1"), header:=xlNo .Range("A1") = "task" .Range("B1") = "quantity'" .Range("c1") = "descrepancy" End With End Sub