Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
load data from MS Access
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="inungh, post: 6360425"] I have a function to retrieve data from Access database to my drop down list using following code which works. I tried to add another drop down box on the spreadsheet and load the data, but it fails. I just wonder can I fill 2 drop down box on the spreadsheet in the same function? If Excel does support for this, where I am missing to fill 2 drop down box on the spreadsheet? Youe help is great appreciated, Dim cn As ADODB.Connection Dim rs As ADODB.Recordset Dim rcArray As Variant Dim strSource As String Dim strSQL As String strSource = "D:MyDB.mdb" strSQL = "SELECT tblEmployee.Employee_ID FROM TblEmployee " Set cn = New ADODB.Connection cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strSource & ";" Set rs = New ADODB.Recordset rs.Open strSQL, cn rcArray = rs.GetRows With Sheets("FRONT").cmbEmployee .Clear .ColumnCount = 1 .List = Application.Transpose(rcArray) .ListIndex = -1 End With rs.Close cn.Close Set rs = Nothing Set cn = Nothing [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
load data from MS Access
Top