Okay,
Say I have 4 coloumns of parts and 100's of rows for those coloumns.
Than i have 3 seperate coloumns that i have coded that when clocked a check mark appears:
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("F8:F16")) Is Nothing Then
Target.Font.Name = "Marlett"
If Target = vbNullString Then
Target = "a"
Else
Target = vbNullString
End If
End If
After these selections are checked i want them to copy that row and put them onto another sheet.
i could make 100's of macors, but i was hoping i could use the ActiveCell as a variable or something for the range to copy.
if this makes sense
btsp
Say I have 4 coloumns of parts and 100's of rows for those coloumns.
Than i have 3 seperate coloumns that i have coded that when clocked a check mark appears:
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("F8:F16")) Is Nothing Then
Target.Font.Name = "Marlett"
If Target = vbNullString Then
Target = "a"
Else
Target = vbNullString
End If
End If
After these selections are checked i want them to copy that row and put them onto another sheet.
i could make 100's of macors, but i was hoping i could use the ActiveCell as a variable or something for the range to copy.
if this makes sense
btsp