#1   Report Post  
Posted to microsoft.public.excel.misc
Ron Ron is offline
external usenet poster
 
Posts: 250
Default Form fill in

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Form fill in

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default Form fill in

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
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
How do I fill a cell in a user form from a selection on same form? Terry Tipsy Excel Discussion (Misc queries) 4 June 11th 07 02:59 PM
Form Fill acoleman Excel Worksheet Functions 0 April 12th 07 09:38 PM
Fill in form to type Item descrictions and costs and fill in funct cradino Excel Worksheet Functions 0 July 16th 06 08:44 PM
how to get a data form to fill you own exel sheet (was data-form erik van buijtenen Excel Worksheet Functions 2 May 30th 06 05:31 PM
Excel as fill-in form Sashacat7 Excel Discussion (Misc queries) 1 January 25th 06 06:21 PM


All times are GMT +1. The time now is 06:55 AM.

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

About Us

"It's about Microsoft Excel"