• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

ComboBox /Textbox data

Marlon0180

New Member
Hi guys,
Newbei here
need your help
I have this form, and i wanted to get data from my excel sheet and pick it to my droplist MO no.: the auto show other figures on my text box MO Qty. Sty no. Bal Qty.

here is my form

upload_2018-2-5_9-45-56.png
here is my excel

upload_2018-2-5_9-50-43.png

Hope you can help me
 
If the list is always the same size you can add it manually to the control
select the Combobox and edit the RowSource
upload_2018-2-5_11-6-10.png

If the list will change you can assign it to a Named Formula
upload_2018-2-5_11-8-42.png
where DataList is =OFFSET(Sheet1!$B$3,,,COUNTA(Sheet1!$B:$B),1)

otherwise you can programatically add data to the control
 
Is this what you are looking for?
See attached.
I made an example this time.
Next time post a example of your workbook instead of pictures please.
Pictures are for a photoshop forum.;)
 

Attachments

  • Example.xlsb
    22 KB · Views: 3
Back
Top