Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default toggle button text

Is it possible to have a toggle button to display different captions and in
different colour depending if a linked cell is either true or false?

Thanks in advance for any help

John
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,593
Default toggle button text

Here is one way

Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H10" '<=== Change to suit

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
Me.Buttons("Button 1").Caption = .Value
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.



--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"John Davies" wrote in message
...
Is it possible to have a toggle button to display different captions and

in
different colour depending if a linked cell is either true or false?

Thanks in advance for any help

John



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default toggle button text

Hi John,

Try:

'=============
Private Sub ToggleButton1_Click()
With Me.ToggleButton1
.Caption = IIf(Range("A1").Value, "A", "B")
.BackColor = IIf(Range("A1").Value, &H8080FF, &HFF0000)
End With
End Sub
'<<=============


---
Regards,
Norman



"John Davies" wrote in message
...
Is it possible to have a toggle button to display different captions and
in
different colour depending if a linked cell is either true or false?

Thanks in advance for any help

John



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default toggle button text

Hi John,

The suggested code should read:

'=============
Private Sub ToggleButton1_Click()
With Me.ToggleButton1
.Caption = IIf(.Value, "A", "B")
.BackColor = IIf(.Value, &H8080FF, &HFF0000)
End With
End Sub
'<<=============


---
Regards,
Norman


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
Need to Use 1 Button to toggle On or Off Jim May Excel Discussion (Misc queries) 2 December 1st 07 08:01 PM
Toggle Button NavEx Excel Worksheet Functions 1 May 23rd 06 02:40 AM
toggle button text color John Davies Excel Discussion (Misc queries) 5 December 12th 05 06:43 PM
Adding .xla button for Toggle Calculation Button Mike Excel Programming 5 August 19th 05 01:55 PM
toggle button text colour John Davies Excel Programming 2 August 8th 05 01:02 PM


All times are GMT +1. The time now is 04:52 PM.

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

About Us

"It's about Microsoft Excel"