Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default 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

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 156
Default 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


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default 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



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
Resetting cell format from TEXT to NUMERIC and DATE Tom Excel Discussion (Misc queries) 2 May 5th 08 05:43 AM
Numeric Format Changes From 1 Cell to the Next? LPS Excel Discussion (Misc queries) 2 August 23rd 07 08:38 PM
convert a numeric number in text format in another cell? Abhishek Excel Worksheet Functions 2 February 22nd 07 05:44 PM
Format cell conditional numeric and text Cyndy TN Excel Discussion (Misc queries) 1 August 24th 06 07:54 PM
Changing cell format - for example text to numeric sjrku Excel Discussion (Misc queries) 3 December 30th 05 10:40 PM


All times are GMT +1. The time now is 08:49 PM.

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

About Us

"It's about Microsoft Excel"