Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
al al is offline
external usenet poster
 
Posts: 363
Default I need help with combo box

I am trying to have a combo box on a sheet in Excel where I can select the
value from the box to fill the active cell. I was able to go as far as making
the combo and inserting the value but I will have to make a box for every
cell that I need to make entry in. I would really appreciate if some one
could help me on that.
thanks
Al
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 93
Default I need help with combo box

Try google or check Excel help for data validation. It could help you.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default I need help with combo box

You can use the list option under Data=Validation (Validation under the
data menu). You can select all the cells you want to have a dropdown and
apply Data=Validation all at once. The dropdown will appear when you
select the cell.

--
Regards,
Tom Ogilvy

"Al" wrote in message
...
I am trying to have a combo box on a sheet in Excel where I can select the
value from the box to fill the active cell. I was able to go as far as

making
the combo and inserting the value but I will have to make a box for every
cell that I need to make entry in. I would really appreciate if some one
could help me on that.
thanks
Al



  #4   Report Post  
Posted to microsoft.public.excel.programming
al al is offline
external usenet poster
 
Posts: 363
Default I need help with combo box

I am not sure if I understand how to relate this to my question. I may have
not been clear. I want to have a combo box (cboJobType) say in cell A1 the
cboJobType contains the following values (Yes,No,UNK). Now say I selected
Cell A3 for the data entry, is it possible to click on the cboJobType and
select, Say, UNK then go to cell A6 and again use the cboJobType to select
anoth value for this cell and so on? how can I do that.
thanks

"Tom Ogilvy" wrote:

You can use the list option under Data=Validation (Validation under the
data menu). You can select all the cells you want to have a dropdown and
apply Data=Validation all at once. The dropdown will appear when you
select the cell.

--
Regards,
Tom Ogilvy

"Al" wrote in message
...
I am trying to have a combo box on a sheet in Excel where I can select the
value from the box to fill the active cell. I was able to go as far as

making
the combo and inserting the value but I will have to make a box for every
cell that I need to make entry in. I would really appreciate if some one
could help me on that.
thanks
Al




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default I need help with combo box

Private Sub cboJobType_Click()
if ActiveCell.Column = 1 then
ActiveCell.Value = cboJobType.Value
end if
End Sub

right click on the sheet tab and put in code similar to the above.

--
Regards,
Tom Ogilvy


"Al" wrote in message
...
I am not sure if I understand how to relate this to my question. I may

have
not been clear. I want to have a combo box (cboJobType) say in cell A1 the
cboJobType contains the following values (Yes,No,UNK). Now say I selected
Cell A3 for the data entry, is it possible to click on the cboJobType and
select, Say, UNK then go to cell A6 and again use the cboJobType to select
anoth value for this cell and so on? how can I do that.
thanks

"Tom Ogilvy" wrote:

You can use the list option under Data=Validation (Validation under the
data menu). You can select all the cells you want to have a dropdown

and
apply Data=Validation all at once. The dropdown will appear when you
select the cell.

--
Regards,
Tom Ogilvy

"Al" wrote in message
...
I am trying to have a combo box on a sheet in Excel where I can select

the
value from the box to fill the active cell. I was able to go as far as

making
the combo and inserting the value but I will have to make a box for

every
cell that I need to make entry in. I would really appreciate if some

one
could help me on that.
thanks
Al






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 create a combo box that is tied to another combo box? rosamaria Excel Worksheet Functions 2 December 9th 09 10:32 PM
linking a form combo box... results from the combo box to another Trey Excel Discussion (Misc queries) 1 July 15th 07 01:58 AM
combo reference on another combo box for picking address etc. kbjin Excel Worksheet Functions 1 December 8th 06 03:29 PM
"Combo Box - getting control combo box to stick in place in worksh ajr Excel Discussion (Misc queries) 1 February 16th 05 02:05 AM
"Combo Box - getting control combo box to stick in place in worksh ajr Excel Discussion (Misc queries) 0 February 15th 05 07:45 PM


All times are GMT +1. The time now is 05:44 PM.

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"