Hi All,
Please note I already have a code that works but I would like to do it faster.
I was trying to do something like this but not sure if is possible.
The idea is to copy the data from activecell offset into another one in activecell Offset.
Appreciate your response.
Regards
Andres
Please note I already have a code that works but I would like to do it faster.
VBA Code:
Dim X1, X2 as worksheet
Set X1 = Sheets("DataBase Hierarchy")
Set X2 = Sheets("Tool")
X1.Select
ActiveCell.Offset(0, -1).Copy
X2.Select
ActiveCell.Offset(0, 1).PasteSpecial xlPasteValues
I was trying to do something like this but not sure if is possible.
VBA Code:
Dim X1, X2 as worksheet
Set X1 = Sheets("DataBase Hierarchy")
Set X2 = Sheets("Tool")
X2.ActiveCell.Offset(0, 1).Value = X1.ActiveCell.Offset(0, -1).Value
The idea is to copy the data from activecell offset into another one in activecell Offset.
Appreciate your response.
Regards
Andres