Check Box Macro
If you use a checkbox from the forms toolbar
Public Cbox_click()
Dim cBox as CheckBox
set cBox = Application.Caller
Dim rng as Range
set rng = Cells(cbox.TopLeftCell,1)
rng.Range("A1,D1,F1:H1").Copy Destination:= _
worksheets("Master").Cells(rows.count,1).End(xlup) (2)
End Sub
assign this to all you checkboxes. Place the checkbox on the row you want
it to refer to.
Regards,
Tom Ogilvy
"Jason Watts" wrote in message
...
Hello all,
I need a macro that will allow me to asign a check box to a specific row
and when I check the box centain cells in that row will be sent to another
sheet. I need to do this with multiple rows on multiple sheets with all
info going to one sheet.
|