Plus/Minus buttons?

ryleepowell

New Member
Joined
Nov 8, 2016
Messages
2
Hello,

I am using Excel to keep a running tally of a variety of instances, and they always go up by 1. I would like to know if it is possible to create a "Plus/Minus" area in Excel so I can simply click "Up" and the number increase. Below is a mock up of it.

C7w14.jpg


Does anyone know if this is possible? If so, can someone please explain?

Thanks, appreciate all your help.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You could use a spin button from the Forms toolbar -- Developer > Insert, Form Controls.
 
Upvote 0
Paste this code into the Sheet Level Module :

Code:
Option Explicit


Sub CommandButton1_Click()
  Range("D3").Value = Range("D3") + 1
End Sub


Sub CommandButton2_Click()
  Range("D4").Value = Range("D4") + 1
End Sub


Sub CommandButton3_Click()
  Range("D5").Value = Range("D5") + 1
End Sub


Sub CommandButton4_Click()
  Range("D6").Value = Range("D6") + 1
End Sub


Sub CommandButton5_Click()
  Range("D7").Value = Range("D7") + 1
End Sub


Sub CommandButton6_Click()
  Range("D8").Value = Range("D8") + 1
End Sub


Sub CommandButton10_Click()
  Range("D3").Value = Range("D3") - 1
End Sub


Sub CommandButton11_Click()
  Range("D4").Value = Range("D4") - 1
End Sub


Sub CommandButton12_Click()
  Range("D5").Value = Range("D5") - 1
End Sub


Sub CommandButton13_Click()
  Range("D6").Value = Range("D6") - 1
End Sub


Sub CommandButton14_Click()
  Range("D7").Value = Range("D7") - 1
End Sub


Sub CommandButton15_Click()
  Range("D8").Value = Range("D8") - 1
End Sub



You will need to paste a command button on the worksheet corresponding to each of these Butt******* macros. NOTE the button numbers ! Make certain they match to button you paste on the sheet.
 
Upvote 0

Forum statistics

Threads
1,223,922
Messages
6,175,382
Members
452,639
Latest member
RMH2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top