View Single Post
 
Old 08-20-2014, 01:08 AM
Jockster's Avatar
Jockster Jockster is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Aug 2014
Location: UK
Posts: 2
Jockster is on a distinguished road
Default

Thanks for replying.
This doesn't do what I was hoping for however, the following does so have managed to get around the issue:
Quote:
LastColumn = Cells.Find(What:="", After:=ActiveCell.Offset(, 13), LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Select
Activecell.Offset (,13) - Active cell is the lookup value found in col "A" and the Offset part moves the start of the search area 13 columns away from the active cell; What:="" is searching for the first blank cell after col 13.
Reply With Quote