Senin, Oktober 17, 2016

Code of Macro Excel To Copy Paste Value From One Cell To Other Cell

If we want to copy paste from A1 cell to A3 cell, its macro code is:
Sub CopyValue()
Range("A3").Value = Range("A1").Value
End Sub
or
Sub CopyValue()
Cells(3, 1) = Cells(1, 1)
End Sub

0 komentar: