I've got a conundrum that's I've been mulling over all night with no luck. I am hoping someone on here knows a solution.
I am trying to reference a set range of rows within the active column (which will of course differ depending on which cell is selected when the macro is run). I know I can return the column number using activecell.column, and I was thinking I could perhaps change this into a letter (prfereably not using a table in Excel) and then have this as part of a range. Something along the lines of:
Range(ActiveCell.Column & "2" & ":" & ActiveCell.Column & "11").Select
...but with activecell.column returned as a letter.
I'm not certain this is the best way of going about it. I'm also aware there is something called R1C1, but its not an area of VBA I am familiar with and the help file on it hasn't been that helpful.
Any ideas on this would be greatly appreciated. I have a feeling the solution is right under my nose, but at the moment my nose is too big to allow me to see it.
I am trying to reference a set range of rows within the active column (which will of course differ depending on which cell is selected when the macro is run). I know I can return the column number using activecell.column, and I was thinking I could perhaps change this into a letter (prfereably not using a table in Excel) and then have this as part of a range. Something along the lines of:
Range(ActiveCell.Column & "2" & ":" & ActiveCell.Column & "11").Select
...but with activecell.column returned as a letter.
I'm not certain this is the best way of going about it. I'm also aware there is something called R1C1, but its not an area of VBA I am familiar with and the help file on it hasn't been that helpful.
Any ideas on this would be greatly appreciated. I have a feeling the solution is right under my nose, but at the moment my nose is too big to allow me to see it.