toggle button text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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)
 
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
'<<=============
 
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
'<<=============
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top