I am trying to create a simple working program in Access. I have a List which has pulled information from a tabel. I am trying to set up a command button to understand which option I chose in my list and open a corresponding form.
I tried to enter:
DoCmd.OpenForm "Store Walk", , , "[100] = " & CLng(Me.List1.Column(0)), acFormEdit
And this works, however no-matter which option I choose, It opens the form Store Walk. Any ideas would be MUCH appriciated.
DoCmd.OpenForm "Store Walk", , , "[100] = " & CLng(Me.List1.Column(0)), acFormEdit
And this works, however no-matter which option I choose, It opens the form Store Walk. Any ideas would be MUCH appriciated.