Hello,
I want to double click a cell in Sheets("Upload") and have it populate the cell A3 in Sheets("List")
I have placed the code the Sheets(Upload) but not working
any help is appreciated with this
Thank you
I want to double click a cell in Sheets("Upload") and have it populate the cell A3 in Sheets("List")
I have placed the code the Sheets(Upload) but not working
any help is appreciated with this
Thank you
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Sheets("List").Range("A3").Value = Sheets("Upload").ActiveCell.Value
End Sub