Thread
:
Copy Text into comment box
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
Copy Text into comment box
Sub CaptureText()
Set r = Range("Z9:Z48")
For Each rr In r
rr.Offset(0, -1).NoteText rr.Value
Next
End Sub
--
Gary''s Student - gsnu200830
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student