Ok..., I'm going nuts.
I have a larger project that I can't get to work, but for the sake of simplicity I have made a basic test that is still not working.
I have s table called Personal
Personal contains ID, FN, LN, Street, City, State, and Zip.
Personal contains 10 records, 3 from NJ, 5 from PA and 2 from RI.
I have a form called form1.
form1 one shows all 10 Personal and related info.
I have a drop-down that I want only to show DISTINCT values from the States. The after update event will filter form1. This I can do and is not a problem.
The trouble is that it continues to show all 10 states and not just one NJ, one PA and one RI.
My Combobox Row Source is:
SELECT DISTINCT Reprsentatives.ID1, Reprsentatives.State FROM Reprsentatives ORDER BY Reprsentatives.State;
......it continues to show all 10 States from all of the records. What am I doing wrong????
I have a larger project that I can't get to work, but for the sake of simplicity I have made a basic test that is still not working.
I have s table called Personal
Personal contains ID, FN, LN, Street, City, State, and Zip.
Personal contains 10 records, 3 from NJ, 5 from PA and 2 from RI.
I have a form called form1.
form1 one shows all 10 Personal and related info.
I have a drop-down that I want only to show DISTINCT values from the States. The after update event will filter form1. This I can do and is not a problem.
The trouble is that it continues to show all 10 states and not just one NJ, one PA and one RI.
My Combobox Row Source is:
SELECT DISTINCT Reprsentatives.ID1, Reprsentatives.State FROM Reprsentatives ORDER BY Reprsentatives.State;
......it continues to show all 10 States from all of the records. What am I doing wrong????