This is probably a very simple one, but I haven't had much success thus far.
I know you can make a table field a drop-down combo box by selecting 'combo box' in the setup, and then telling it to get the data for the combo box from another table, but is there some way to do it without another table? E.g. if I wanted to have a drop-down box with the choice of 'Male' or 'Female', how would I do it without creating a second table with one field and just the records 'Male' and 'Female'? Surely there's a short SQL or similar statement I can put in the 'Control Source' field to generate the same result? SELECT 'Male' OR 'Female' FROM ...........what?
I know you can make a table field a drop-down combo box by selecting 'combo box' in the setup, and then telling it to get the data for the combo box from another table, but is there some way to do it without another table? E.g. if I wanted to have a drop-down box with the choice of 'Male' or 'Female', how would I do it without creating a second table with one field and just the records 'Male' and 'Female'? Surely there's a short SQL or similar statement I can put in the 'Control Source' field to generate the same result? SELECT 'Male' OR 'Female' FROM ...........what?