T
Tonso
I have simple procedure that uses BeforeDoubleClick to place a green arrow in whatever cell i select.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
With Selection.Font
.Name = "Wingdings 3"
.FontStyle = "Regular"
.Size = 16
.Color = -16776961
End With
Selection.FormulaR1C1 = "ã"
Selection.HorizontalAlignment = xlCenter
Selection.VerticalAlignment = xlCenter
ActiveCell.Offset(1, 0).Range("A1").
I would like to be able to doublelcick through several options, so...
If cell is blank then a double click will produce the green "up" arrow.
When the cell is then the a green arrow, another coulbleclick will produce a green "down" arrow,
if the cell has a green donw arrow, if will produce a red "up" arrow"
if the cell has a red "up" arrow, it wil produce a red "down" arrow.
I have no idea how to "click through" the choices to produce the desired arrow.
Thanks,
Tonso
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
With Selection.Font
.Name = "Wingdings 3"
.FontStyle = "Regular"
.Size = 16
.Color = -16776961
End With
Selection.FormulaR1C1 = "ã"
Selection.HorizontalAlignment = xlCenter
Selection.VerticalAlignment = xlCenter
ActiveCell.Offset(1, 0).Range("A1").
I would like to be able to doublelcick through several options, so...
If cell is blank then a double click will produce the green "up" arrow.
When the cell is then the a green arrow, another coulbleclick will produce a green "down" arrow,
if the cell has a green donw arrow, if will produce a red "up" arrow"
if the cell has a red "up" arrow, it wil produce a red "down" arrow.
I have no idea how to "click through" the choices to produce the desired arrow.
Thanks,
Tonso