Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm trying to set something up that enables me to press a button and the numeric value in a cell will increase by one. I don't want this cell to relate to another cell, just if, say, the value in the cell was 1 and I pressed a key it would increase to 2 and if I pressed the key again it would increase to 3 and so on... Can anyone help me? Mitch |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, try the following code snippet, cells(1,1).value = cells(1,1).value+1.
This will increment the value at row 1 and column 1 by 1. Include this snippet within the code that will be called when a button is pressed. " wrote: Hi, I'm trying to set something up that enables me to press a button and the numeric value in a cell will increase by one. I don't want this cell to relate to another cell, just if, say, the value in the cell was 1 and I pressed a key it would increase to 2 and if I pressed the key again it would increase to 3 and so on... Can anyone help me? Mitch |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
right click sheet tabview codeinsert this
Now, if you double click cell a5 or a6 the cell clicked will increase by one. Is that what you want? 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 wrote in message s.com... Hi, I'm trying to set something up that enables me to press a button and the numeric value in a cell will increase by one. I don't want this cell to relate to another cell, just if, say, the value in the cell was 1 and I pressed a key it would increase to 2 and if I pressed the key again it would increase to 3 and so on... Can anyone help me? Mitch |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi again,
Thankyou both for your help that's great and has solved my problem, Mitch |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Although you didn't say what you used, glad to help
-- Don Guillett SalesAid Software wrote in message ups.com... Hi again, Thankyou both for your help that's great and has solved my problem, Mitch |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date in cell keeps adding the current year. | Excel Discussion (Misc queries) | |||
Adding a worksheet to a current workbook | Excel Discussion (Misc queries) | |||
Adding a worksheet to a current workbook | Excel Discussion (Misc queries) | |||
Adding to current cells | Excel Worksheet Functions | |||
Adding current selection | Excel Programming |