Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
jkbrown
 
Posts: n/a
Default change value with single click, increasing by 1 every time?

Is it possible to have a cell setup to increase the value of the cell by 1
everytime it is clicked? Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default change value with single click, increasing by 1 every time?

Why not use a spinner button or a scrollbar either from the forms toolbar or
the control toolbox



--

Regards,

Peo Sjoblom

http://nwexcelsolutions.com




"jkbrown" wrote in message
...
Is it possible to have a cell setup to increase the value of the cell by 1
everytime it is clicked? Thanks.



  #3   Report Post  
Posted to microsoft.public.excel.misc
Ardus Petus
 
Posts: n/a
Default change value with single click, increasing by 1 every time?

With double-click, use following sub in Worksheet's code:

'----
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
If Target.Address = "$A$1" Then
Target.Value = Target.Value + 1
Cancel = True
End If
End Sub
'-----

HTH
--
AP

"jkbrown" a écrit dans le message de
news: ...
Is it possible to have a cell setup to increase the value of the cell by 1
everytime it is clicked? Thanks.



  #4   Report Post  
Posted to microsoft.public.excel.misc
jkbrown
 
Posts: n/a
Default change value with single click, increasing by 1 every time?

I want to be able to change the value with one touch on the touch screen.
That was my first thought on it as well. Thanks for the input.

"Peo Sjoblom" wrote:

Why not use a spinner button or a scrollbar either from the forms toolbar or
the control toolbox



--

Regards,

Peo Sjoblom

http://nwexcelsolutions.com




"jkbrown" wrote in message
...
Is it possible to have a cell setup to increase the value of the cell by 1
everytime it is clicked? Thanks.




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
change date based on time kdp145 Excel Discussion (Misc queries) 7 December 14th 05 02:05 AM
How do I change . to : when input in a time sheet by error geordie New Users to Excel 2 December 10th 05 08:24 PM
Calculate change over time Gwen Excel Worksheet Functions 0 January 1st 05 05:52 PM
Time Stamp without change AntonyY Excel Discussion (Misc queries) 3 November 26th 04 09:13 AM
Time Stamp-With Change AntonyY Excel Discussion (Misc queries) 1 November 25th 04 11:38 PM


All times are GMT +1. The time now is 07:23 PM.

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

About Us

"It's about Microsoft Excel"