Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to add instructions to a cell and have it appear "in the
background" when the cell is selected, then disappear when text is typed? For example, "Type last name, press TAB". |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Why dont use the comments.
Right click on a cell. Add comments.. -- If this post helps click Yes --------------- Jacob Skaria "wjs2ps" wrote: Is there a way to add instructions to a cell and have it appear "in the background" when the cell is selected, then disappear when text is typed? For example, "Type last name, press TAB". |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For auto hide and unhide. Right click on the sheet tabView Code and paste
the below code. Change the range accordingly. The below works in A1:J30 range. Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Application.Intersect(Target, Range("A1:J30")) Is Nothing Then Application.DisplayCommentIndicator = xlCommentIndicatorOnly If Not Target.Comment Is Nothing Then Target.Comment.Visible = True End If End If End Sub PS: Set the Security level to low/medium in (Tools|Macro|Security). If this post helps click Yes --------------- Jacob Skaria "wjs2ps" wrote: Is there a way to add instructions to a cell and have it appear "in the background" when the cell is selected, then disappear when text is typed? For example, "Type last name, press TAB". |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Data validation will do the trick.
Data - Validation - Input Message - Add your Text and you are done... -- HTH... Jim Thomlinson "wjs2ps" wrote: Is there a way to add instructions to a cell and have it appear "in the background" when the cell is selected, then disappear when text is typed? For example, "Type last name, press TAB". |
#5
![]() |
|||
|
|||
![]()
Yes, you can add typing instructions to an Excel cell using the Data Validation feature. Here's how:
Now, when you select the cell, the input message will appear as a tooltip. When you start typing in the cell, the message will disappear. If you want to edit or remove the instructions, simply select the cell and go back to the Data Validation dialog box.
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Nothing shows up in the cell while I'm typing! | Excel Discussion (Misc queries) | |||
click on cell and get instructions, how do you set it up? | Excel Discussion (Misc queries) | |||
typing the date in a cell in excel and ###### comes up instead | Excel Discussion (Misc queries) | |||
Excel : while typing the Enter key, it does not move to the cell b | Excel Discussion (Misc queries) | |||
can excel choose a name from a list when I am typing in a cell | Excel Worksheet Functions |