Hi everyone
I have a table tblAccountsHearder which store the headings of account (not accounts) under each account Heading there are several accounts listed in tblAccounts.
I have combo box on frmAddNewAccount name is cboType in this combo box my row source is
let you give you example of what i want to achieve.
for example:
(lets say i have 50 list items in HeadingName column which appear in combobox row source as i mentioned above.
Secondly i want some list items to remove from combo box but not from the table data.
lets say i have combo box list (1,2,3,4,5,6,7,8,9,0) and i want combo box should not show me (1,5,0) in above list then combo box list should show me (2,3,4,6,7,8,9) only....)
I can type it manually also for beginning it ok but in future when data increased i cant easy to add each one manually.
Any help in doing that will be great.
I have a table tblAccountsHearder which store the headings of account (not accounts) under each account Heading there are several accounts listed in tblAccounts.
I have combo box on frmAddNewAccount name is cboType in this combo box my row source is
Code:
SELECT tblAccountsHeader.HeadingName FROM tblAccountsHeader GROUP BY tblAccountsHeader.HeadingName;
let you give you example of what i want to achieve.
for example:
(lets say i have 50 list items in HeadingName column which appear in combobox row source as i mentioned above.
Secondly i want some list items to remove from combo box but not from the table data.
lets say i have combo box list (1,2,3,4,5,6,7,8,9,0) and i want combo box should not show me (1,5,0) in above list then combo box list should show me (2,3,4,6,7,8,9) only....)
I can type it manually also for beginning it ok but in future when data increased i cant easy to add each one manually.
Any help in doing that will be great.