Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is my macro now:
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("A33:O49")) Is Nothing Then Exit Sub If Range("O" & Target.Row) = "" Then Exit Sub Target.EntireRow.Copy Application.EnableEvents = False taddress = (1, Target.Column).End(xlDown).Address With Sheets("Rapport des transactions") .Range(taddress).PasteSpecial xlPasteAll End With Application.EnableEvents = True End Sub I'm trying to copy my info in the first empty row of sheet "Rapport des Transactions" in the same column as the target. What should i change because it doesn't work? Thank you MP |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
A visual basic value copy BUG?? - accounting format has copy problem!! | Excel Programming | |||
Copy/Paste how to avoid the copy of formula cells w/o calc values | Excel Discussion (Misc queries) | |||
copy formulas from a contiguous range to a safe place and copy them back later | Excel Programming | |||
EXCEL FILE a copy/a copy/a copy ....filename | New Users to Excel | |||
Code to copy range vs Copy Entire Worksheet - can't figure it out | Excel Programming |