PC Review


Reply
Thread Tools Rate Thread

Can you auto populate a cell by clicking on it?

 
 
BethAnn
Guest
Posts: n/a
 
      18th Mar 2009
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.
 
Reply With Quote
 
 
 
 
Gary''s Student
Guest
Posts: n/a
 
      18th Mar 2009
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.

 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      18th Mar 2009
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
<(E-Mail Removed)> 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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto Populate a Cell Ken Microsoft Excel Worksheet Functions 2 16th Oct 2009 06:11 PM
how do i populate a cell by clicking it in excel radio button Microsoft Excel Programming 2 9th Sep 2009 04:46 AM
Auto populate this cell based on what's typed in this cell CrazyChic Microsoft Excel Misc 2 10th Apr 2009 02:25 PM
Auto populate cell with info on other cell (Sheet) Oscar Microsoft Excel Worksheet Functions 4 3rd Feb 2009 03:35 PM
auto populate cell based on previous cell drop down list selectio. =?Utf-8?B?UHV6emxlZGJ5TGlzdHM=?= Microsoft Excel Misc 2 11th Sep 2006 01:28 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:17 AM.