Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default using the mouse to do numeric input

Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I would
like to point to a cell and click it to enter the number one a second click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default using the mouse to do numeric input

How about a data validation pull-down. All you need is a mouse.
--
Gary''s Student - gsnu200730


"Evans" wrote:

Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I would
like to point to a cell and click it to enter the number one a second click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default using the mouse to do numeric input

Right click sheet tabview codecopy/paste this.
If you doubleclick cell a5 or a6 the number will increase by 1 for each
double click
You could use a worksheet_selectionchange but it could be dangerous if you
inadvertently selected.

Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As
Boolean)
If target.Address = "$A$5" Or target.Address = "$A$6" Then
On Error GoTo fixit
Application.EnableEvents = False
If target.Value = 0 Then oldvalue = 0
target.Value = 1 * target.Value + 1
oldvalue = target.Value
fixit:
Application.EnableEvents = True
End If
Cancel = True
End Sub


--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I
would
like to point to a cell and click it to enter the number one a second
click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 611
Default using the mouse to do numeric input

Evans,

Take a look at the On-Screen Keyboard in Accessibility Options (Start - Programs -
Accessories - Accessibility).

--
Earl Kiosterud
www.smokeylake.com

Note: Some folks prefer bottom-posting.7
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I would
like to point to a cell and click it to enter the number one a second click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.



  #5   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 594
Default using the mouse to do numeric input

Here's one that might do what you want..........

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Dim Cellval
If Range("a1").Value = "" Then
GoTo 100
Else
If Range("a1").Value = "+" And Target.Address = "$A$2" Then
Cellval = ActiveCell.Value
Cellval = ActiveCell.Value + 1
ActiveCell.Value = Cellval
Else
If Range("a1").Value = "-" And Target.Address = "$A$2" Then
Cellval = ActiveCell.Value
Cellval = ActiveCell.Value - 1
ActiveCell.Value = Cellval
Else
End If
End If
End If
100
End Sub

Vaya con Dios,
Chuck, CABGx3



"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I

would
like to point to a cell and click it to enter the number one a second

click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.





  #6   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 594
Default using the mouse to do numeric input

How cool that is, Earl.....thanks for the info........I actually typed this
response with it.....it works well!

Vaya con Dios,
Chuck, CABGx3



"Earl Kiosterud" wrote in message
...
Evans,

Take a look at the On-Screen Keyboard in Accessibility Options (Start -

Programs -
Accessories - Accessibility).

--
Earl Kiosterud
www.smokeylake.com

Note: Some folks prefer bottom-posting.7
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I

would
like to point to a cell and click it to enter the number one a second

click
would enter 2 and so on. Or better yet use a headset and microphone to

do
all of the entry.





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 611
Default using the mouse to do numeric input

Chuck,

Yeah. It reminds me of when I was fooling around with SendKeys to put worksheet stuff into
an application (didn't seem to be any other way). I actually had an experimental VBA
routine that filled out an entire email in OE, including the address box and subject line
and sending it. What we don't do for cool stuff!
--
Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"CLR" wrote in message
...
How cool that is, Earl.....thanks for the info........I actually typed this
response with it.....it works well!

Vaya con Dios,
Chuck, CABGx3



"Earl Kiosterud" wrote in message
...
Evans,

Take a look at the On-Screen Keyboard in Accessibility Options (Start -

Programs -
Accessories - Accessibility).

--
Earl Kiosterud
www.smokeylake.com

Note: Some folks prefer bottom-posting.7
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I

would
like to point to a cell and click it to enter the number one a second

click
would enter 2 and so on. Or better yet use a headset and microphone to

do
all of the entry.







  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default using the mouse to do numeric input

Unbelievable.....exactly what I wanted to do. I am not an expert at coding.
Can this be modified to do ranges of cells?

Again thanks.

"Don Guillett" wrote:

Right click sheet tabview codecopy/paste this.
If you doubleclick cell a5 or a6 the number will increase by 1 for each
double click
You could use a worksheet_selectionchange but it could be dangerous if you
inadvertently selected.

Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As
Boolean)
If target.Address = "$A$5" Or target.Address = "$A$6" Then
On Error GoTo fixit
Application.EnableEvents = False
If target.Value = 0 Then oldvalue = 0
target.Value = 1 * target.Value + 1
oldvalue = target.Value
fixit:
Application.EnableEvents = True
End If
Cancel = True
End Sub


--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I
would
like to point to a cell and click it to enter the number one a second
click
would enter 2 and so on. Or better yet use a headset and microphone to do
all of the entry.



  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default using the mouse to do numeric input

Each sheet is different howeve it could be columns or something like A1 thru
A10 and then C1 thru C10.
Most of the sheets only have 2 columns that are populated.

Again thanks for your help.

"Don Guillett" wrote:

such as?

--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Unbelievable.....exactly what I wanted to do. I am not an expert at
coding.
Can this be modified to do ranges of cells?

Again thanks.

"Don Guillett" wrote:

Right click sheet tabview codecopy/paste this.
If you doubleclick cell a5 or a6 the number will increase by 1 for each
double click
You could use a worksheet_selectionchange but it could be dangerous if
you
inadvertently selected.

Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As
Boolean)
If target.Address = "$A$5" Or target.Address = "$A$6" Then
On Error GoTo fixit
Application.EnableEvents = False
If target.Value = 0 Then oldvalue = 0
target.Value = 1 * target.Value + 1
oldvalue = target.Value
fixit:
Application.EnableEvents = True
End If
Cancel = True
End Sub


--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to
index
numbers, or any experience with voice recognition systems to do this?

We use excel to input numbers from a voice mail system into a form. I
would
like to point to a cell and click it to enter the number one a second
click
would enter 2 and so on. Or better yet use a headset and microphone to
do
all of the entry.







  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default using the mouse to do numeric input

chg this
If target.Address = "$A$5" Or target.Address = "$A$6" Then
to this
If Not Intersect(target, Range("a1:a10,c1:c10")) Is Nothing Then

--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Each sheet is different howeve it could be columns or something like A1
thru
A10 and then C1 thru C10.
Most of the sheets only have 2 columns that are populated.

Again thanks for your help.

"Don Guillett" wrote:

such as?

--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Unbelievable.....exactly what I wanted to do. I am not an expert at
coding.
Can this be modified to do ranges of cells?

Again thanks.

"Don Guillett" wrote:

Right click sheet tabview codecopy/paste this.
If you doubleclick cell a5 or a6 the number will increase by 1 for
each
double click
You could use a worksheet_selectionchange but it could be dangerous if
you
inadvertently selected.

Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel
As
Boolean)
If target.Address = "$A$5" Or target.Address = "$A$6" Then
On Error GoTo fixit
Application.EnableEvents = False
If target.Value = 0 Then oldvalue = 0
target.Value = 1 * target.Value + 1
oldvalue = target.Value
fixit:
Application.EnableEvents = True
End If
Cancel = True
End Sub


--
Don Guillett
SalesAid Software

"Evans" wrote in message
...
Does anyone have any experience in using mouse clicks in a cell to
index
numbers, or any experience with voice recognition systems to do
this?

We use excel to input numbers from a voice mail system into a form.
I
would
like to point to a cell and click it to enter the number one a
second
click
would enter 2 and so on. Or better yet use a headset and microphone
to
do
all of the entry.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Why input range contains non-numeric data? Nickman Excel Discussion (Misc queries) 10 April 3rd 23 06:49 PM
formula numeric input seamaml Excel Discussion (Misc queries) 1 January 10th 06 04:12 AM
How do I stop the input cell from jumping to the mouse cursor? JMorris Excel Discussion (Misc queries) 1 August 13th 05 12:35 AM
my mouse moves diagonally when i scroll on mouse? BKMISHRA Excel Worksheet Functions 0 June 29th 05 11:43 AM
moving mouse highlights cells without touching left mouse button bremboy Excel Discussion (Misc queries) 2 January 27th 05 06:19 PM


All times are GMT +1. The time now is 02:55 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"