A
Alberto Ast
I have saved an activecell value to a variable
xlastdev = ActiveCell.Value
Then have saved an activecell adress to anotehr variable
xnextDev = ActiveCell.Address
I want to assign the last value to the next address
Range(xnextDev).Value = xlastdev
But it does not work... it fail at the last command.
xlastdev = ActiveCell.Value
Then have saved an activecell adress to anotehr variable
xnextDev = ActiveCell.Address
I want to assign the last value to the next address
Range(xnextDev).Value = xlastdev
But it does not work... it fail at the last command.