Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Moggie
 
Posts: n/a
Default Linking worksheets by buttons.


Hi,
I am new to all this excel stuff so this may seem a simple question.
I am trying to link together worksheet tables by the use of a n
onscreen visual button. So by simply clicking on a certain cell/button
it will take the user to my desired worksheet.

Any Ideas?!?!?!?

Cheers.


--
Moggie
------------------------------------------------------------------------
Moggie's Profile: http://www.excelforum.com/member.php...o&userid=33692
View this thread: http://www.excelforum.com/showthread...hreadid=534653

  #2   Report Post  
Posted to microsoft.public.excel.misc
keithl816
 
Posts: n/a
Default Linking worksheets by buttons.


If you want to designate a cell to open another sheet you could
Hyperlink to that sheet.

Right click cell in the dropdown pick Hyperlink|Pick Your Workbook then
Click Bookmark|Select sheet desired.

Or you could create a toggle button
Go into design mode place a togglebutton onto the sheet and right
click, in the dropdown click view code. place this code between Private
sub Togglebutton1_Click() and End Sub


Code:
--------------------

If ToggleButton1.Value = True Then
ToggleButton1.Caption = "HIDE FORM"
Else
ToggleButton1.Caption = "SHOW FORM"
End If
If Worksheets("Sheet1").Visible = True Then
Worksheets("Sheet1").Visible = False
Else
Worksheets("Sheet1").Visible = True
End If
With Me.ToggleButton1
If .Value = False Then
.ForeColor = &H0
Else
.ForeColor = &HFF&
End If
End With

--------------------


Change sheet1 to the name of the sheet you are wanting to open. Also
make sure to hide the sheet before clicking the button.

hope this helps


--
keithl816
------------------------------------------------------------------------
keithl816's Profile: http://www.excelforum.com/member.php...o&userid=21287
View this thread: http://www.excelforum.com/showthread...hreadid=534653

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Linking Worksheets Reefaman Excel Worksheet Functions 0 February 28th 06 07:36 PM
I am getting #VALUE! when linking worksheets - what am i doing wro KAT Excel Discussion (Misc queries) 7 February 23rd 06 07:46 AM
Linking Excel Worksheets GLT New Users to Excel 6 October 27th 05 03:57 PM
Linking Several Worksheets to One Worksheet TangentMemory Excel Discussion (Misc queries) 1 May 10th 05 11:37 PM
Linking across worksheets not working as desired Steve Excel Worksheet Functions 0 April 27th 05 10:30 AM


All times are GMT +1. The time now is 04:47 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"