VBA error on selecting a whole column A1:A

PAULLYSTEW

New Member
Joined
May 8, 2019
Messages
5
I was sent a workbook that had macros selecting columns of varying length. The debugger showed me it did not like the selection (A1:A)
Once I changed it to (A1:A1000) far more cells than I'll ever populate, the macro works fine.

The question is why does my Office 2016 not like it but many others who got the same file have no issues?
Is there a parameter I can change on my system to allow this type of alliteration?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
To select a column you would use
Code:
Columns("A:A").Select

It worked after you changed it since it now had a valid range
 
Upvote 0
I would but we have to omit the first cell so it is actually (A2:A) that is in the macro.
Select cell A2 all the way down.
 
Upvote 0
Try the below if it is the active sheet....

Code:
Range("A2:A" & Range("A" & Rows.count).End(xlUp).Row).Select

Although you don't need to select cells to work with them
 
Upvote 0
I see this is another workaround and I will pass that off to the author of the workbook.
Any guesses as to why or when the (A2:A) did work? Older version? Newer version?

That is my question more than anything.
 
Upvote 0
As far as I know, it has never worked.
Certainly doesn't work in 2003, or 2013
Pretty sure it didn't work in 2000, but cannot check that.
 
Upvote 0
Any guesses as to why or when the (A2:A) did work?

As Fluff has stated the A2:A syntax would never have worked in my memory as well, unless you are referencing the entire column (including A1) as Scott T has posted in post number 2 you need the row number on the first cell and the last cell or you will get a syntax error.

I think you need to look again at what the other users have in their code as it can't be just A2:A.
 
Last edited:
Upvote 0
Here is a sample from the Macro within the workbook that no one else has issue with but me in a 90 store chain. You can see multiple times these selection format that you say should not work.

Range("I1").Select
ActiveCell.Formula = "=SUM(F2:F)/I2"
Range("I1").Select
Selection.NumberFormat = "#,##0"
Range("I2").Select
Selection.NumberFormat = "0.0"
ActiveCell.Formula = "=SUM(G2:G)"
 
Upvote 0
No what you have posted is a single cell with a column and row reference I2 not a column which you would have as I2:I.

The SUM(F2:F) is within a formula not the VBA syntax and basically is just a text string as it is in quotes..
 
Last edited:
Upvote 0
Yes, sure, but when the macro runs, it halts at this point saying invalid. I correct the (G2:G) to say (G2:G50) and it works.
What I want to know is why does this macro work on all other users that get this workbook, but me?
 
Upvote 0

Forum statistics

Threads
1,215,004
Messages
6,122,656
Members
449,091
Latest member
peppernaut

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