VBA Combo Box for Excel

T

Tom W

I have preference for Access based application, However, My boss wants me to
improve our monster pricing spreadsheet ONLY in Excel. My problem is I need
to create database tables in separate worksheets and pick up the Items/Values
needed on 1st spreadsheet. I cannot do what I need in perely excel, so I need
to create a combox in VBA. Now - my big problem is that my combo box is fine
but I cannot get the results to be placed in the cell that had focus when VBA
Form was executed. Am I taking the long way? Is there something already
written do do this. I want to see multiple columns (non-contigious) in combo
box when making selection.
 
H

Harald Staff

Hi Tom

in the userform code:
ActiveCell.Value = Me.ComboBox1.Text
with ot without adjustments.

Try to get away with data and normalization in an Access file, and pure
Excel / Userform userinterfaces. Excel does miracles, but is close to
useless when it comes to relational data and multiuser environments.

Best wishes Harald
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

combo box 2
Disabling the Combo Box 6
Using combo box 1
populate combo box from worksheet 4
Forms Combo Box Listindex set to zero 3
Fill Combo Box 2
Linking Combo Box Values to Access Table 2
Combo Box 3

Top