Results 1 to 7 of 7

Thread: Displaying symbols programmatically

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    VBAX Master
    Joined
    Jul 2006
    Location
    Belgium
    Posts
    1,285
    Location
    Another way without Marlett font but with Symbol font. Use the squareroot symbol. Place this in the sheet module.
     
    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
        If Target.Column = 1 And Target.Row > 1 Then
            ActiveCell.Font.Name = "Symbol"
            ActiveCell.Font.Size = 10
            ActiveCell.FormulaR1C1 = "?"
            Cancel = True
        Else
            MsgBox ("Only column 1 and row > 1")
            Cancel = True
        End If
    End Sub
    Charlize
    Last edited by Aussiebear; 06-30-2025 at 03:11 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •