kevininstructor@state.or.us
Guest
Re: LastColumn used as letter(s) in VBA
Chip,
Many thanks for the assistance and your time!!!
Kevin
"Chip" <cneuman@gmail.com> wrote in message
news:1108676082.374252.287560@l41g2000cwc.googlegroups.com...
> I improved upon this because it doesnt account for the last column
> being AG (as opposed to Z). So here you go:
>
> lastcolumnname = ActiveSheet.UsedRange.Columns.Address
> startofcolumnname = WorksheetFunction.Search(":", lastcolumnname, 4) +
> 2
> endofcolumname = WorksheetFunction.Search("$", lastcolumnname,
> startofcolumnname) - 1
> lastcolumn = Mid(lastcolumnname, startofcolumnname, endofcolumname + 1
> - startofcolumnname)
>
Bookmarks