Select to the last column -1, VBA

doriannjeshi

Active Member
Joined
Apr 5, 2015
Messages
338
Office Version
  1. 365
Platform
  1. Windows
Hi,
I need to select a range ctrl+shift right to the end column -1 column with VBA
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Assuming you start from Selected Cell... Paste this in Sheet code module that you want to affect.
VBA Code:
Sub SelectCells()
Range(Selection, Me.Columns.End(xlToRight).Offset(0, -1)).Select
End Sub
 
Upvote 0
when I run the macro

1731805121898.png
 
Upvote 0
Code has to be pasted into the Sheet code module. Otherwise change Me to Activesheet.
 
Upvote 0
If that code does what you want, then there is no need for either 'Me' or 'ActiveSheet' since any selection can only be on the active sheet. This would do the same thing

VBA Code:
Sub SelectCells()
Range(Selection, Columns.End(xlToRight).Offset(0, -1)).Select
End Sub

Keep in mind too that you rarely need to actually select any range to work with it and selecting slows your code.
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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