INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Any excel gurus out there?  (Read 2375 times)

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8955
Any excel gurus out there?
« on: September 03, 2011, 06:39:22 am »

I was wondering if it's possible to create an excel file that, no matter which tab is active when last saved, always opens with the first tab on view, without using macros?

I would then like to have that first tab have named links that switch to other tabs in the workbook when clicked...

Is this achievable?

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: Any excel gurus out there?
« Reply #1 on: September 03, 2011, 09:26:10 am »

I don't think so.

more so, not without using macros

is there a reason you don't want to use macros?
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8955
Re: Any excel gurus out there?
« Reply #2 on: September 03, 2011, 09:49:10 am »

Macros are out because the file would contain reports for a dozen or so individuals, and many of the recipient's pcs are locked down tighter than a tight thing and won't allow macros to run. At the moment all the reports are individual files, and I want to try and ease the reporting process by merging them into a single file. I will need to sell the idea to the individual recipients first though, so the slicker I can get it, the better my chances...

I know excel has a lot of power, but I don't know much about it, or its limitations.

thanks for replying btw, it's appreciated.

Magic_Randy

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 2350
  • I used to be indecisive, but now I'm not so sure..
Re: Any excel gurus out there?
« Reply #3 on: September 03, 2011, 09:54:19 am »

I don't know if this helps, but it is something I found on the subject.

===============
To open to a specific sheet (in case it's not the last one used) you would need a Worksheet Open Event - using VBA.

From Excel, press Alt+F11 to open the VB Editor. Look for the name of your workbook in the left pane. Click on the + sign to expand the view and double click on ThisWorkbook. In the right pane there are two dropdowns at the top. Click on the left one and choose 'Workbook'. Now copy and paste this code to the right pane
Code:
Private Sub Workbook_Open()
Worksheets("Example").Activate
End Sub
Change the sheet name (in speech marks above) to match the one you need.

Now when the workbook opens, it will open to your desired sheet.
Logged

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: Any excel gurus out there?
« Reply #4 on: September 03, 2011, 10:03:51 am »

I don't know if this helps, but it is something I found on the subject.

===============
To open to a specific sheet (in case it's not the last one used) you would need a Worksheet Open Event - using VBA.

From Excel, press Alt+F11 to open the VB Editor. Look for the name of your workbook in the left pane. Click on the + sign to expand the view and double click on ThisWorkbook. In the right pane there are two dropdowns at the top. Click on the left one and choose 'Workbook'. Now copy and paste this code to the right pane
Code:
Private Sub Workbook_Open()
Worksheets("Example").Activate
End Sub
Change the sheet name (in speech marks above) to match the one you need.

Now when the workbook opens, it will open to your desired sheet.

I Just Tested That, That actually works, Cute
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA

Magic_Randy

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 2350
  • I used to be indecisive, but now I'm not so sure..
Re: Any excel gurus out there?
« Reply #5 on: September 03, 2011, 11:01:18 am »

Hopefully this solves marko's issue.

Excel does a lot, but it's hard to figure out how to do things with it.
Logged

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: Any excel gurus out there?
« Reply #6 on: September 03, 2011, 11:35:00 am »

Yep, I learned some of excel by taking others and modifying some of the code to do what I needed. I had a boss once that showed me how to do some things when playing with inventories, and employee production.
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA

imugli

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1601
Re: Any excel gurus out there?
« Reply #7 on: September 03, 2011, 07:56:03 pm »

I don't know if this helps, but it is something I found on the subject.

===============
To open to a specific sheet (in case it's not the last one used) you would need a Worksheet Open Event - using VBA.

From Excel, press Alt+F11 to open the VB Editor. Look for the name of your workbook in the left pane. Click on the + sign to expand the view and double click on ThisWorkbook. In the right pane there are two dropdowns at the top. Click on the left one and choose 'Workbook'. Now copy and paste this code to the right pane
Code:
Private Sub Workbook_Open()
Worksheets("Example").Activate
End Sub
Change the sheet name (in speech marks above) to match the one you need.

Now when the workbook opens, it will open to your desired sheet.

I found this as well, but the thread I read said you need Macros enabled to be able to use it...

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: Any excel gurus out there?
« Reply #8 on: September 03, 2011, 08:22:58 pm »

I found this as well, but the thread I read said you need Macros enabled to be able to use it...

I think your right, I just adjusted security to high, and that disables macros, and does not allow the sheet1 to be selected after a save on sheet2.
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8955
Re: Any excel gurus out there?
« Reply #9 on: September 04, 2011, 08:58:51 am »

Still, something to be going on with, thanks for the replies.

I've knocked up a draft file and will try it out with a few recipients on Monday to see how it behaves. "Hyperlink" was the answer to worksheet links on the first sheet. They seem to work OK, and automatically update when a "Save As.." gives the file a new name, which is nice.

I'll let you know how I get on....

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8955
Re: Any excel gurus out there?
« Reply #10 on: September 05, 2011, 12:56:40 am »

I don't know if this helps, but it is something I found on the subject.

===============
To open to a specific sheet (in case it's not the last one used) you would need a Worksheet Open Event - using VBA.

From Excel, press Alt+F11 to open the VB Editor. Look for the name of your workbook in the left pane. Click on the + sign to expand the view and double click on ThisWorkbook. In the right pane there are two dropdowns at the top. Click on the left one and choose 'Workbook'. Now copy and paste this code to the right pane
Code:
Private Sub Workbook_Open()
Worksheets("Example").Activate
End Sub
Change the sheet name (in speech marks above) to match the one you need.

Now when the workbook opens, it will open to your desired sheet.
This appears to work. The PCs I tested on threw a warning on file open, where a press on the OK button allows the file to open and switch to the first worksheet. That'll do for me, hopefully I've sold the idea well enough... Thanks again.

Magic_Randy

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 2350
  • I used to be indecisive, but now I'm not so sure..
Re: Any excel gurus out there?
« Reply #11 on: September 05, 2011, 08:55:11 am »

Great...
Logged

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: Any excel gurus out there?
« Reply #12 on: September 05, 2011, 10:05:03 am »

Quote
This appears to work. The PCs I tested on threw a warning on file open, where a press on the OK button allows the file to open and switch to the first worksheet.

That's what I got.
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA
Pages: [1]   Go Up