Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Creating a new "record"

Is there any way to have pre-formatted controls and form items (drop-down and
check boxes) appear when a certain value is input into a cell?

What I am trying to do is when a person enters a project name into column A,
a drop-down will appear in column B, and check boxes in column c.

I can place them there ahead of time, but the actual numbers of projects is
unknown.




  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,344
Default Creating a new "record"

Hi,

Try code like this in the Sheet1 (or whatever) object:

Private Sub Worksheet_Change(ByVal Target As Range)
Set isect = Application.Intersect(Target, Range("G19"))
If Not isect Is Nothing Then
Me.CheckBox1.Visible = True
End If
End Sub

This assumes that the Checkbox is named CheckBox1 and the cell where you
enter data is G19.
--
Cheers,
Shane Devenshire


"aeddave" wrote:

Is there any way to have pre-formatted controls and form items (drop-down and
check boxes) appear when a certain value is input into a cell?

What I am trying to do is when a person enters a project name into column A,
a drop-down will appear in column B, and check boxes in column c.

I can place them there ahead of time, but the actual numbers of projects is
unknown.




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
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
HELP on "left","right","find","len","substitute" functions serene83 Excel Discussion (Misc queries) 5 June 27th 06 02:23 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
"Turn "record macro" display on. greaseman Excel Discussion (Misc queries) 2 April 28th 06 05:58 PM
automatically updating "school event record" formula hiddenaddy Excel Worksheet Functions 0 January 9th 06 08:36 PM


All times are GMT +1. The time now is 09:26 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"