Deselecting range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Guest
If you use Columns("A:N").Select in a marco how do you deselect them
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
I know I can do that but I did not want to move out of the cell I am in, tried using deselect but it want work
 
Upvote 0
As far as I know, there must be at least one cell selected in a worksheet - i don't think it's possible to have nothing selected.

What exactly are you trying to do?
It is rarely necessary to do any selecting/activating in macros and doing so merely increases run times.
 
Upvote 0
As has already been said it is very rare that you should need to select an Objects with VBA. But if you do just use:

ActiveCell.Select
 
Upvote 0
I am selecting the range to clear it is there anouther way to do this with out selecting it, but I want to end up in the cell I was in which could be different each time. ActiveCell.Select takes me to A1
 
Upvote 0

Forum statistics

Threads
1,223,383
Messages
6,171,772
Members
452,423
Latest member
Rene M

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