I have a table with 50 fields, and a combo box which is set to 'field
list' to read the field names. I want to select report groups via
another combo box based on the field names the user selects. For
instance, if they select 'State' in the first box, I want the second to
populate with 'New York' and 'New Jersey' and so on. I tried this as
the source of the second box :
SELECT Me.cbx FROM table GROUP BY Me.cbx ORDER BY Me.cbx;
but it did not work. Any ideas?
list' to read the field names. I want to select report groups via
another combo box based on the field names the user selects. For
instance, if they select 'State' in the first box, I want the second to
populate with 'New York' and 'New Jersey' and so on. I tried this as
the source of the second box :
SELECT Me.cbx FROM table GROUP BY Me.cbx ORDER BY Me.cbx;
but it did not work. Any ideas?
Comment