Hi, I have a sub in my excel application that copys a range inside a worksheet to another range insode the same worksheet. Heres my code :
With Worksheets("Billing"
.Range("K68:K76"
.Select
Selection.Copy
.Range("M68"
.Select
Selection.PasteSpecial Paste:=xlValues
End With
This code doesn't seem to work. No errors though and when I execute the macro by itself it works. It seem not to work when executed inside my code and there doesn't seem to be anything that could cause a conflict.
Any ideas???
Thx
With Worksheets("Billing"
.Range("K68:K76"
Selection.Copy
.Range("M68"
Selection.PasteSpecial Paste:=xlValues
End With
This code doesn't seem to work. No errors though and when I execute the macro by itself it works. It seem not to work when executed inside my code and there doesn't seem to be anything that could cause a conflict.
Any ideas???
Thx