Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I believe I've seen Excel fill in forms that has the instruction of what to
put in a cell written in the cell in maybe a shadowed-type print. Then as one uses the form and begins to enter information in that particular cell the instruction disappears and the newly typed information replaces it. What is that called in Excel and how is it done? -- Farmer Ron |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have not seen this type of form that you speak of.
Any time you start typing in a cell you will overwrite what was in the cell to begin with. You could place instructional text in a cell and format the text to a light gray color. Then using this event code the formatting would be cleared when you typed new text into the cell(s). Private Sub Worksheet_Change(ByVal Target As Range) Const sINPUTS As String = "A1,B2,C3,D4,E5,F6" 'edit cells to suit On Error GoTo ws_exit: If Me.Range(sINPUTS) Is Nothing Then Exit Sub Application.EnableEvents = False Target.Font.ColorIndex = 0 ws_exit: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the code into that module. An alternative to all the above could be a Data Validation Input Message. When user clicks on the cell a message pops up with instructions. Gord Dibben MS Excel MVP On Sun, 30 Nov 2008 09:39:00 -0800, Ron wrote: I believe I've seen Excel fill in forms that has the instruction of what to put in a cell written in the cell in maybe a shadowed-type print. Then as one uses the form and begins to enter information in that particular cell the instruction disappears and the newly typed information replaces it. What is that called in Excel and how is it done? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
That behavior exists in design are of PivotTables but not for quite the purpose you are refering to. Direction appear that say Drop Row Fields Here and when you drop a field in that area the message disappears. But there is no such feature available to the Excel user for this purpose. However, you could enter instructions in cells and when the user typed on those cells the instructions would be replaced. But then, that is just Excel's default behavior. If this helps, please click the Yes button. Cheers, Shane Devenshire "Ron" wrote: I believe I've seen Excel fill in forms that has the instruction of what to put in a cell written in the cell in maybe a shadowed-type print. Then as one uses the form and begins to enter information in that particular cell the instruction disappears and the newly typed information replaces it. What is that called in Excel and how is it done? -- Farmer Ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I fill a cell in a user form from a selection on same form? | Excel Discussion (Misc queries) | |||
Form Fill | Excel Worksheet Functions | |||
Fill in form to type Item descrictions and costs and fill in funct | Excel Worksheet Functions | |||
how to get a data form to fill you own exel sheet (was data-form | Excel Worksheet Functions | |||
Excel as fill-in form | Excel Discussion (Misc queries) |