Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Howdy
In the VBE type the text 'notetext' and Hit F1 - in the help's REMARKS it says: "To add a note that contains more than 255 characters, use this method once to specify the first 255 characters, and then use it again to append the remainder of the note (no more than 255 characters at a time)." I am unsure how to do this, as specifying the notetext twice with different text only keeps the second set of text. eg. If Len(vaProductsRange(i, 4)) 255 And Len(vaProductsRange(i, 4)) < 510 Then cellUnder.Offset(0, 1).NoteText Left(vaProductsRange(i, 4), 255) cellUnder.Offset(0, 1).NoteText Mid(vaProductsRange(i, 4), 256, 255) ElseIf Len(vaProductsRange(i, 4)) <= 255 Then cellUnder.Offset(0, 1).NoteText vaProductsRange(i, 4) End If What code would I need to use to correctly append it? Thanks Matt |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
from the text 4 pcs., how to remove only characters/text | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions | |||
get more than 255 characters from text box | Excel Programming | |||
Only getting first 256 characters of text box | Excel Programming |