Select Cells in Between using Macro

omairhe

Well-known Member
Joined
Mar 26, 2009
Messages
2,040
Office Version
  1. 2019
Platform
  1. Windows
Hey everyone,

I would like to ask that how can I select all the cells starting from Active Row, Column A up until Active Row, Active Column.

For instance I am at cell G12

What I want is to select A12:G12

Similarly If I am at D19

then select A19:D19

Thank you and will appreciate.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try:

Code:
Range(Cells(ActiveCell.Row,"A"),ActiveCell).Select

thank you, I would further appreciate if it is possible for you to make the ActiveCell as the default selected cell inside the bigger selection instead of a cell in column A.

For instance if the user is at G12, the code is run and the range A12:G12 is now selected, But my selection changes from cell G12 to A12 after the code is run, whereas I would like that to be G12.
 
Upvote 0
How about this:

Code:
    Set c1 = ActiveCell
    Range(Cells(c1.Row, "A"), c1).Select
    c1.Activate
 
Upvote 0

Forum statistics

Threads
1,215,471
Messages
6,125,000
Members
449,202
Latest member
Pertotal

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