Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone,
I´m a noob at VBA, so sorry if i offend anyone:) I want a macro that goes to the last written cell of a column. I tried: Sub Macro 1 Max(Range("C:C")).Select End Sub Wich obviously didn´t work. In column C i had to insert the function IF(B="";"";row()) in order to have the maximum value matching the last written cell in column B. I wanted that macro to send me to the maximum value of column C :) Best Regards |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello Vincent
Range("C65536").End(xlUp) HTH Cordially Pascal "Vincent" a écrit dans le message de news: ... Hi everyone, I´m a noob at VBA, so sorry if i offend anyone:) I want a macro that goes to the last written cell of a column. I tried: Sub Macro 1 Max(Range("C:C")).Select End Sub Wich obviously didn´t work. In column C i had to insert the function IF(B="";"";row()) in order to have the maximum value matching the last written cell in column B. I wanted that macro to send me to the maximum value of column C :) Best Regards |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
This would select the last used cell in column C Range("C" & Range("C65536").End(xlUp).Row).Select Mike "Vincent" wrote: Hi everyone, I´m a noob at VBA, so sorry if i offend anyone:) I want a macro that goes to the last written cell of a column. I tried: Sub Macro 1 Max(Range("C:C")).Select End Sub Wich obviously didn´t work. In column C i had to insert the function IF(B="";"";row()) in order to have the maximum value matching the last written cell in column B. I wanted that macro to send me to the maximum value of column C :) Best Regards |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() cells(rows.count,"c").end(xlup).select but selections are usually NOT necessary OR desirable. -- Don Guillett Microsoft MVP Excel SalesAid Software "Vincent" wrote in message ... Hi everyone, I´m a noob at VBA, so sorry if i offend anyone:) I want a macro that goes to the last written cell of a column. I tried: Sub Macro 1 Max(Range("C:C")).Select End Sub Wich obviously didn´t work. In column C i had to insert the function IF(B="";"";row()) in order to have the maximum value matching the last written cell in column B. I wanted that macro to send me to the maximum value of column C :) Best Regards |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a lot for your help. Maybe i´ll study a bit VBA now :)
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IRR Guess | Excel Worksheet Functions | |||
Guess my number game. | Excel Programming | |||
Help with Loops is my guess | Excel Programming | |||
IRR Guess Problem | Excel Worksheet Functions | |||
My guess it's a simple quesion, but I'm a beginner | Excel Programming |