• 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.

Userform listbox multicolumn extract values into worksheet

Monty

Well-Known Member
Hello n Goodmorning experts.....Am working with userforms in excel.

I have listbox with multicolumn which is 2 and there is a textbox above listbox to search a text to filter values in listbox....later in filtered values by selecting any items In listbox..those should appear in excel sheet 8n a1, a2..etc..hope my query is clear..quick response is really appreciated. ..Thanks for your help. ...

Sorry could not attatch test file..

MONTY
 
You might looking something like this.

Code:
Private Sub ListBox1_Click()
Sheet1.Range("A1").Value = Me.ListBox1.Value
Sheet1.Range("A2").Value = Me.ListBox1.Column(2)
End Sub

or share the sample wb so that same could get address in a better way.
 
Hello Deepak...Thanks for quick response...I will get back to u with sample wb as suggested.
 
Back
Top