Forum Discussion
Mehran1359
Feb 23, 2023Copper Contributor
Copy and Past a Cell Content in another cell with formula
Hi Guys, I was wondering if you can advise me on how can I copy and paste just the value of one cell into another cell using an excel formula. Thanks Mehran
Mehran1359
Feb 23, 2023Copper Contributor
Thanks for your reply. With this method, I am moving the cell A1 formula to Cell B1.
I am looking for a method to just copy & past the value of cell A1 to B1. Exactly the same as when we copy and paste only the cell value.
I like to break the connection formula between A1 and B1.
I am looking for a method to just copy & past the value of cell A1 to B1. Exactly the same as when we copy and paste only the cell value.
I like to break the connection formula between A1 and B1.
FikturFox
Feb 23, 2023Brass Contributor
If that is the case, a formula cannot do this. Instead, use macro/vba script.
ie
Sub Test()
Range("B1").Value = Range("A1").value
End Sub
This procedure will copy the value in A1 to B1.