DIVINEDAR0956
IS-IT--Management
I have the following event connected to a worksheet to copy text from another worksheet. When I execute the event it works the first time but the next time it leaves my cell blank and copies nothing.
The event is as follows:
Sub Copy_CurrentCell_toWBSNumber()
Dim wbscell As Range
Set wbscell = Range("B2"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
wbscell = ActiveCell.Value
Sheets("Sheet1"
.Range("N8"
.Value = wbscell
End Sub
Do I need to reset this event before the sub end.
Please help?
The event is as follows:
Sub Copy_CurrentCell_toWBSNumber()
Dim wbscell As Range
Set wbscell = Range("B2"
wbscell = ActiveCell.Value
Sheets("Sheet1"
End Sub
Do I need to reset this event before the sub end.
Please help?