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