Thank you! But how do i integrate it into my code... i know Combo Box options can be identified by integer as well.
Private Sub Combo3_Change()
xlDoc = cbx_DailyRep.Text
Set xlApp = New Excel.Application
Set xlBook = xlApp.Workbooks.Open("d:\oss\" & xlDoc & ".xls")
xlApp.Visible = True
Set xlBook = Nothing
Set xlApp = Nothing
End Sub
In here, how do i encode it so that a specific excel document will open when i choose the option from the combo box? Is it possible or is there something i'm missing out on?