Urgent Excel help!!

Associate
Joined
9 Oct 2004
Posts
1,376
Location
Paris
Evening all,

I was wondering if someone could help me out, i'm in urgent need of excel guidance...

Basically, I want a little menu I can insert into a sheet where I have 3 buttons each going to a respective work sheet, also a picture in the background and text would be good...

How do I go about this? I've been faffing around for ages watching tutorials etc and I need it done in like an hour.. :eek:

Cheers!
 
Use the Developer tab to insert a couple of buttons (form control option), then assign something like the following VBA to each button:

Sub Macro1()
Sheets("SheetName").Select
End Sub

where "SheetName" is the name of your sheet you want to go to.
 
Use the Developer tab to insert a couple of buttons (form control option), then assign something like the following VBA to each button:

Sub Macro1()
Sheets("SheetName").Select
End Sub

where "SheetName" is the name of your sheet you want to go to.

Cheers! Is it possible to have this form inserted in a work sheet?
 
Back
Top Bottom