Hi all,
Fairly new to the coding side of things and learning on the go by creating small helpful things to get the feel for it.
I have a basic code that copies a cell to the next available cell on another sheet. The cell contains a formula.
Hoping someone can help with what to add so that the result of the formula is copied and not the formula itself.
![]()
Private Sub CommandButton1_Click() Worksheets("Sheet 1").Range("B3").Copy _ Destination:=Worksheets("Sheet 2").Cells(Worksheets("Sheet 2").Rows.Count, "C").End(xlUp).Offset(1, 0) End Sub
Thanks in advance Excel Wizards *bow*
Bookmarks