I'm working on a form where I have a couple combo boxes. In the past, I'd create/link a Lookup table - in this case, I have about 30 values from which the user can choose, but I also want to allow users to enter a custom value if the one they want isn't on the list.
But I'm now toying with the idea of creating a Group By Query based on the record source table and using that as the Row Source. This query will give the user the option of selecting any of the existing values or, since "Limit To List" is false on both the table and the form control, type in a new one that will automatically show up subsequently due to the nature of the query.
It seems to work pretty well, and as of yet, I haven't really come up with any downside beyond the possiblity of the list getting so big it will cause a problem - but that's not a likely scenario here.
Does anyone have experience with using this method? Any pitfalls I should look out for?
But I'm now toying with the idea of creating a Group By Query based on the record source table and using that as the Row Source. This query will give the user the option of selecting any of the existing values or, since "Limit To List" is false on both the table and the form control, type in a new one that will automatically show up subsequently due to the nature of the query.
It seems to work pretty well, and as of yet, I haven't really come up with any downside beyond the possiblity of the list getting so big it will cause a problem - but that's not a likely scenario here.
Does anyone have experience with using this method? Any pitfalls I should look out for?