![]() |
how to format numeric click up/down for a cell on tablet pc?
on my tablet pc i would like to be able to touch a cell in Excel and have it
click up or down. I don't know how to format it to do so |
how to format numeric click up/down for a cell on tablet pc?
If you mean move up or down to the next cell then...
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.EnableEvents = False If Not Intersect(Target, Target) Is Nothing Then Target.Offset(-1, 0).Select 'use 1 instead of -1 ot move down End If Application.EnableEvents = True End Sub Sandy Richard Harper wrote: on my tablet pc i would like to be able to touch a cell in Excel and have it click up or down. I don't know how to format it to do so |
how to format numeric click up/down for a cell on tablet pc?
I want to have the cell be empty and then as I tap the cell on the tablet's
screen, have the contents of the cell incrementally increase or decrease numerically one number at a time Rick "Sandy" wrote: If you mean move up or down to the next cell then... Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.EnableEvents = False If Not Intersect(Target, Target) Is Nothing Then Target.Offset(-1, 0).Select 'use 1 instead of -1 ot move down End If Application.EnableEvents = True End Sub Sandy Richard Harper wrote: on my tablet pc i would like to be able to touch a cell in Excel and have it click up or down. I don't know how to format it to do so |
All times are GMT +1. The time now is 06:12 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com