Wanting to move single lines to second worksheet

C

CP

I have grabbed a file where by entering an X in lets say line G7 on sheet 1,
it transfers all of line 7 (A through to F) onto the next available row on
sheet 2. It doesnt explain how it is done though - any starting point for me?

I would like to use it for building a list from a large selection of records
- like a customers order for instance.
 
B

Barb Reinhardt

PRess ALT F11 to view the code. Look in each module. Come back here if
you have questions.
 
C

CP

Ok found alot of coding - but doesnt make any sense

Sub MoveRow()
Dim wsOrder As Worksheet
Dim wsData As Worksheet
Dim r As Long

Set wsOrder = Worksheets("OrderForm")
Set wsData = Worksheets("Data Entry")
r = wsOrder.Cells(Rows.Count, 1).End(xlUp).Row + 1

ActiveCell.EntireRow.Copy Destination:=wsOrder.Cells(r, 1)

End Sub

----

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 3 And Target.Column = 3 Then
'calculate criteria cell in case calculation mode is manual
Worksheets("ProductsList").Range("I3").Calculate
Worksheets("ProductsList").Range("Database") _
.AdvancedFilter Action:=xlFilterCopy, _
CriteriaRange:=Sheets("ProductsList").Range("I2:I3"), _
CopyToRange:=Range("A6:G6"), Unique:=False
End If
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 7 And Target.Row > 6 Then
If Cells(Target.Row, 1).Value <> "" Then
Target.Value = "X"
MoveRow
'MsgBox "Row has been copied"
End If
End If
End Sub
 
D

Don Guillett

If, after reading and re-reading, it still doesn't make "any" sense, you
probably will need professional help.
the "moverow" macro is not moving the data but is copying the entire row
(not just some columns) to the next available cell in col A of the
destination sheet. It may be fired manually or as shown by selecting a cell
in column 7 below row 6.
 
M

Muddled

CP--- I Can't help you, but maybe you can help me. I want to move the quote
number & name( 2 cells) on my "Quotes" Tab, to the Job number & Name Slots on
my "Jobs" Tab.I have been able to move the data from one sheet to the next,
however don't know how to make the quotes appear in the next available Job #
column. Any insight??
DC
-
 
D

Don Guillett

You are doing what is called "Hijacking". Start your OWN thread with a
suitable subject line and before/after examples of what you want.
 
M

Muddled

Sorry,
OK
DG

Don Guillett said:
You are doing what is called "Hijacking". Start your OWN thread with a
suitable subject line and before/after examples of what you want.
 
Top