Can a macro add a number?
Solved/Closed
Giorgio.usa
-
May 12, 2010 at 08:54 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 13, 2010 at 10:14 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 13, 2010 at 10:14 AM
Related:
- Can a macro add a number?
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- How to add someone on messenger with phone number - Guide
- How to add @ in laptop - Guide
- How to add songs to sound picker - Guide
- Debian add printer - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 12, 2010 at 09:13 AM
May 12, 2010 at 09:13 AM
both are possible via macro
May 12, 2010 at 09:45 AM
Thanks.
May 12, 2010 at 10:05 AM
Best would be have the clicks. To do that
1. Press ALT + F11 to start VBE
2. Click on Insert and add a new module
3. Paste the code below
Sub myButton()
Range("A1") = Range("A1") + 1
End Sub
4. Now on you sheet add the button and assign it the macro
May 13, 2010 at 07:57 AM
May 13, 2010 at 08:17 AM
May 13, 2010 at 10:02 AM