#1   Report Post  
Posted to microsoft.public.excel.misc
DMK DMK is offline
external usenet poster
 
Posts: 8
Default Display data


How can i have the data in a cell only be shown when the curser is clicked
on that cell or the curser is placed over the cell?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Display data

In sheet-tab codemodule

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("D2")) Is Nothing Then
Range("D2").Font.ColorIndex = 2
Else
Range("D2").Font.ColorIndex = 1
End If
End Sub


"DMK" skrev:


How can i have the data in a cell only be shown when the curser is clicked
on that cell or the curser is placed over the cell?

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
Can I display the actual data in the data field of a pivot chart? Tom Pivot! Excel Discussion (Misc queries) 1 January 12th 06 05:10 PM
Look Up and Display set data timharding Excel Discussion (Misc queries) 0 August 10th 05 08:31 PM
Data display Metalteck New Users to Excel 2 April 7th 05 10:06 PM
Display multiple data Morgan Juul Excel Discussion (Misc queries) 1 February 2nd 05 06:30 PM
format cell data to display stacked data dkay10 Excel Discussion (Misc queries) 1 January 17th 05 02:20 AM


All times are GMT +1. The time now is 10:12 AM.

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"