last row vba

orsm6

Active Member
Joined
Oct 3, 2012
Messages
499
Office Version
  1. 365
Platform
  1. Windows
hi all, the code below runs well, but wanted to see if i could omit the "range(K16:q1000)" part of the code.
in every instance i need to select K16 first and then to the last row of column Q. minus one row if possible

i tried rows.count -2,1 but i imagine this just goes to row 998

Code:
 Application.ScreenUpdating = False
    Sheets("Table").Select
    With Sheets("Table")
        .Range("K16:Q1000" & .Cells(Rows.Count, 1).End(xlUp).Row).Select
    End With
    Selection.Copy

tia.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Try:

Code:
    With Sheets("Sheet2")
        .Range("K16:Q" & .Cells(Rows.Count, 17).End(xlUp).Row - 1).Select
    End With

rows.count, x is the number of the column you are counting.
 
Last edited:
Upvote 0
ahhh of course. yeah that works just fine.

thank you.
 
Upvote 0

Forum statistics

Threads
1,216,526
Messages
6,131,187
Members
449,631
Latest member
mehboobahmad

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top