andrewb90
Well-known Member
- Joined
- Dec 16, 2009
- Messages
- 1,077
Hello all,
I have this that I can't seem to succesfully apply an offset to:
I'm just trying to just the cell values as comments in column D on sheet "Listing", and I can't quite seem to get it right. Any assistance would be greatly appreciated.
I have this that I can't seem to succesfully apply an offset to:
Code:
Sub CellToComment()Dim Rng As Range
Dim WorkRng As Range
On Error Resume Next
Set NoteRng = Range("S89:S100").SpecialCells(xlCellTypeVisible)
For Each Rng In NoteRng
Rng.NoteText Text:=Rng.Value
'Need to Offset to sheet "Listing" in Column D
Next
End Sub
I'm just trying to just the cell values as comments in column D on sheet "Listing", and I can't quite seem to get it right. Any assistance would be greatly appreciated.