![]() |
Select Cells with VBA
Hi:
Can anyone tell me if I can use VBA to select a range of cells, with the Active Cell being an unknown cell in column A. I am using the following: Sheets("INV").Cells(65536, 1).End(xlUp).Offset(1, 0).Select to find the last cell and select the cell below. At that point, I need to select the active cell and several cells below it in the same row. Any help appreciated Thanks, Sam |
Select Cells with VBA
Use
Selection.Resize(X).Select Where x is the 'Total' number of rows you want the resize to b ----- Sam Fowler wrote: ---- Hi Can anyone tell me if I can use VBA to select a range of cells, with the Active Cell being an unknown cell in column A I am using the following: Sheets("INV").Cells(65536, 1).End(xlUp).Offset(1, 0).Selec to find the last cell and select the cell below. At that point, I need to select the active cell and several cells below it in the same row Any help appreciate Thanks Sa |
Select Cells with VBA
You can combine them:
Sheets("INV").Cells(65536, 1).End(xlUp).Offset(1,0).Resize(X).Select But consider whether you really need to select those X cells to do whatever comes next. Alan Beban chris wrote: Use: Selection.Resize(X).Select Where x is the 'Total' number of rows you want the resize to be ----- Sam Fowler wrote: ----- Hi: Can anyone tell me if I can use VBA to select a range of cells, with the Active Cell being an unknown cell in column A. I am using the following: Sheets("INV").Cells(65536, 1).End(xlUp).Offset(1, 0).Select to find the last cell and select the cell below. At that point, I need to select the active cell and several cells below it in the same row. Any help appreciated Thanks, Sam |
All times are GMT +1. The time now is 01:32 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com