Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I wish to have a symbol auto pop when a salesman clicks on space bar in a
cell. (i.e. a phone if he made a phone call, etc.) Reasoning, it's a salesman and if he sees a phone twice, maybe it'll cut down on mistakes.... It's a basic spreadsheet with options for client contact... just 3, can't make it to confusing. I'm not the sharpest tack in Excel but I can follow directions & would appreciate any help.Tks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
First insert these macros and then run the keyset macro:
Sub keyset() Application.OnKey " ", "hello" End Sub Sub hello() ActiveCell.Value = "a" ActiveCell.Font.Name = "Marlett" End Sub If you then click on a cell and then touch the spacebar, a checkmark will appear in the cell. -- Gary''s Student - gsnu200840 "BethAnn" wrote: I wish to have a symbol auto pop when a salesman clicks on space bar in a cell. (i.e. a phone if he made a phone call, etc.) Reasoning, it's a salesman and if he sees a phone twice, maybe it'll cut down on mistakes.... It's a basic spreadsheet with options for client contact... just 3, can't make it to confusing. I'm not the sharpest tack in Excel but I can follow directions & would appreciate any help.Tks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you really want a phone.........
Sub hello() ActiveCell.Value = Chr(40) ActiveCell.Font.Name = "Wingdings" End Sub Gord Dibben MS Excel MVP On Wed, 18 Mar 2009 12:23:07 -0700, Gary''s Student wrote: First insert these macros and then run the keyset macro: Sub keyset() Application.OnKey " ", "hello" End Sub Sub hello() ActiveCell.Value = "a" ActiveCell.Font.Name = "Marlett" End Sub If you then click on a cell and then touch the spacebar, a checkmark will appear in the cell. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto populate cell | Excel Discussion (Misc queries) | |||
Formating a cell to auto populate | Setting up and Configuration of Excel | |||
auto populate cell based on previous cell drop down list selectio. | Excel Discussion (Misc queries) | |||
Auto populate a cell | Excel Programming | |||
Auto Populate a cell | Excel Discussion (Misc queries) |