View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 1,726
Default locating carriage return within cells

compare against vbCrLf or maybe even vbLf.

You don't need to test each character if you just want to know if it
contains one, use Instr.

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)


"Roland" wrote in message
...
I need to locate cells that contain carriage returns. I have no trouble
writing the VBA code to loop each cell and test each character within each
cell. But I do not know what constant to use as I compare each character
to
identify carraiage returns. Can someone please tell me the constant that
represents a carriage return?
Many thanks.
--
Roland