![]() |
Automatically input a symbol in a selected cell
I have a range of cells that when a cell is selected can a symbol be input in
that cell? and if selected again remove the symbol. Can this bee done? |
Automatically input a symbol in a selected cell
Is this so you can see the selected cell better?
If yes, you may want to look at Chip Pearson's utility: http://www.cpearson.com/excel/RowLiner.htm Different, but similar. mapesii wrote: I have a range of cells that when a cell is selected can a symbol be input in that cell? and if selected again remove the symbol. Can this bee done? -- Dave Peterson |
Automatically input a symbol in a selected cell
Try something like this
It goes into the worksheet module, when you right click on the range A1:A10 a check mark will appear or be removed from the selected cell. Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean) If Not Intersect(Target, Range("A1:A10")) Is Nothing Then Cancel = True If Target < "a" Then With Target.Font .Name = "Webdings" End With Target.FormulaR1C1 = "a" Else: Target = "" End If End If End Sub |
Code:
Private Sub Worksheet_Change(ByVal Target As Range) Chris ------ Convert your Excel spreadsheet into an online calculator. http://www.spreadsheetconverter.com |
All times are GMT +1. The time now is 04:13 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com