Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've tried to pass valve that select from combobox list in
event name "DropDown1_Change" to any cell but not success. For combobox object on excel form ( not in VBA toolbar ) seem has no any property or method ( exclude input range, cell link and dropdown line ) If anyone know how to solve this problem please let me know Thank you very much in advance. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sheets("YourSheet").Range("A1").Value=ComboBox1.Va lue
Substitute appropriate name for ComboBox1 HTH Paul -------------------------------------------------------------------------------------------------------------- Be advised to back up your WorkBook before attempting to make changes. -------------------------------------------------------------------------------------------------------------- I've tried to pass value that select from combobox list in event name "DropDown1_Change" to any cell but not success. For combobox object on excel form ( not in VBA toolbar ) seem has no any property or method ( exclude input range, cell link and dropdown line ) If anyone know how to solve this problem please let me know Thank you very much in advance. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sounds like this is a dropdown from the forms toolbar.
In a general module, put in code like this Public Sub DropDown1_Change() Dim drpdwn as DropDown set drpdwn = ActiveSheet.DropDowns(Application.Caller) With drpdwn Activesheet.Cells(1,1).Value = .List(.ListIndex) End With End sub right click on your combobox and choose assign macro. Assign the above macro. -- regards, Tom Ogilvy "chanon" wrote in message ... I've tried to pass valve that select from combobox list in event name "DropDown1_Change" to any cell but not success. For combobox object on excel form ( not in VBA toolbar ) seem has no any property or method ( exclude input range, cell link and dropdown line ) If anyone know how to solve this problem please let me know Thank you very much in advance. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thank you for all comment. I appreciate for rapidly answer everyone give to me. *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert cell value from a formula to a valve on save | Excel Discussion (Misc queries) | |||
Pass Cell Address to OFFSET | Excel Worksheet Functions | |||
how to pass a cell as parameter for an external program? | Excel Discussion (Misc queries) | |||
Pass or Fail (green or red) criteria for cell? | Excel Discussion (Misc queries) | |||
How to pass values of a cell? | Excel Discussion (Misc queries) |