![]() |
code to select first sheet
I export several sheets from Access to an Excel workbook and run a macro that
formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy |
code to select first sheet
Try this
Sheet1.Select "Judy Ward" wrote: I export several sheets from Access to an Excel workbook and run a macro that formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy |
code to select first sheet
sheets(1).select
Maybe... Judy Ward wrote: I export several sheets from Access to an Excel workbook and run a macro that formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy -- Dave Peterson |
code to select first sheet
I don't know what your loop for formatting the sheets looks like. Ahead of
the loop if you are always on the first sheet when you start the macro put in these lines - define a variable such as - Dim SH as string SH = ActiveSheet.Name after the loop has finished - Sheets(SH).select You could also try Sheet1.Select if that is always the case for the first sheet. That is independent of the name. You can see that information in the VBAProject window. ie. Sheet1 (sheetname) "Judy Ward" wrote: I export several sheets from Access to an Excel workbook and run a macro that formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy |
code to select first sheet
Thank you all very much for replying. This solves my problem.
"Dave Peterson" wrote: sheets(1).select Maybe... Judy Ward wrote: I export several sheets from Access to an Excel workbook and run a macro that formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy -- Dave Peterson |
code to select first sheet
Mike,
That will only work if the codename for that sheet has not been changed. Barb "Mike" wrote: Try this Sheet1.Select "Judy Ward" wrote: I export several sheets from Access to an Excel workbook and run a macro that formats each of the sheets (bolds and centers titles, sets column widths, etc.). When the macro is done, it leaves the focus on the last sheet of the workbook. I want the focus to be on the first sheet. All of the sheets have names (not just Sheet1, Sheet2), but I don't want to hard-code the sheet name because it could change. Sheets("Sheet1").Select does not work. Is there a generic way to refer to Sheet1 (that has been renamed)? Thank you, Judy |
All times are GMT +1. The time now is 12:17 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com