Generic sheet selection in a macro
Thanks for the info. I also came up with this
Range("E:E,A:A").Select
Since I do know the columns I need, in this case A and E, this worked just
fine.
Thanks for the suggestion, you actually gave me some ideas for another macro.
Have a good one.
DaveK
"Dave Peterson" wrote:
Another option is to use a variable to represent that new worksheet.
Depending on how you're importing the .csv...
Dim CSVWks As Worksheet
dim myRng as range
Set CSVWks = Workbooks.Open(Filename:="c:\mycsv.csv").Worksheet s(1)
'Then maybe you can find the last row in column A:
with csvwks
set myrng = .range("a1",.cells(.rows.count,"A").end(xlup))
'do something with myRng
end with
DaveK wrote:
I am importing .csv files and creating graphs. I recorded macros to do what
I need, but the sheet names that are created automatically also get stored in
the macros. How do I make them generic to any sheet I import? E.g., select
whatever the first sheet is vs. the name that the macro recorded, which will
not be the same sheet name every time. BTW, the macros reformat the first
column, create a graph, then save the graph in a second sheet with. Since
the macros recorded specific ranges during the graphing portion, how do I
modify the macro to select all data in the same columns, not just A1:A75?
--
Dave Peterson
|