Home |
Search |
Today's Posts |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() "neowok " wrote in message ... done some more testing and its now clear that the carriage return that is in the oval is not the same as a 'vbnewline' so basically its not picking it up, which is whats causing the error. there must be another way to detect a return character other than looking for vbnewline? thanks You can look for the specific character using its ascii code typically 10 for CR or 13 for NewLine using the INSTR function If Instr(0, SearchString, chr(10)) <0 Then msgbox "New Line Found" Endif Keith |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return position of 2nd, 3rd, ect occurrence of a character in a st | Excel Discussion (Misc queries) | |||
Printer return character | Excel Discussion (Misc queries) | |||
SELECTING FROM A DROP DOWN LIST BY TYPING FIRST CHARACTER | New Users to Excel | |||
Using replace to get rid of paragraph return character | Excel Discussion (Misc queries) | |||
Return the 6th thru the nth character? | Excel Worksheet Functions |