View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Finding Last Column in a given Row

Cells(2,256).End(xltoLeft).Column

--
Regards,
Tom Ogilvy

"Lance Hoffmeyer" wrote in message
...
Hello,

How do I find the last nonempty column in a given row (say row 2)?

Lance