So i have 3 Coloumns (F-H), they are checkmark coloumns.
Now i want it so that if i click Coloumn F in any row it will paste to "sheet 2".
And "sheet 3" for G and "sheet4" for H.
the range for the cloumns i have set to whatever the last row used is.
So i need to have a variable for my sheets so i cna assign them, not to sure how to get around that.
right now i have actual sheets in there just to make sure that code works. but i need that "sheet2" to become some kinda variable to point to other sheets.
thanks in advance
BTSP
Now i want it so that if i click Coloumn F in any row it will paste to "sheet 2".
And "sheet 3" for G and "sheet4" for H.
the range for the cloumns i have set to whatever the last row used is.
So i need to have a variable for my sheets so i cna assign them, not to sure how to get around that.
Code:
LR2 = Sheets("sheet2").Range("A" & Rows.Count).End(xlUp).Row
LR1 = Target.Row
Sheets("Sheet1").Range("A" & LR1 & ":" & "D" & LR1).Copy Destination:=Sheets("sheet2").Range("A" & LR2 + 1)
right now i have actual sheets in there just to make sure that code works. but i need that "sheet2" to become some kinda variable to point to other sheets.
thanks in advance
BTSP