View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Toppers Toppers is offline
external usenet poster
 
Posts: 4,339
Default Variable for column selection

One way:

Dim colvar As String
colvar = "D"
Range(colvar & Rows.Count).End(xlUp).Offset(1).Select

"Mats W." wrote:

Hi,

I use the script;
Range("D" & Rows.Count).End(xlUp).Offset(1).Select
..to check for the last row in a given column.

but I need to change the column D to a variable. I tried different ways to
write that without success. Appreciate if someone can give a hint!

Thanks!
--
Mats W.