Hello everyone! I've got a question that is much harder than I anticipated. I was thinking this would be very easy, but I have been mistaken so far. Hopefully it's something obvious that I'm overthinking!
I'm happy to provide many more details as necessary, but I'll try to keep it brief for the first post.
I am trying to design a form, which would display records from a query. I would like to have check boxes next to each of the records returned from the query. The user would choose specific records by clicking in the check boxes, and then click a button that exports them to an Excel spreadsheet.
However, this has turned out to be trickier than I thought. The check boxes are displayed as blue squares by default, and individual records can't be selected. You can only check none or all of the records.
My understanding, from searching through old posts, is that this is because check boxes are unbound controls. The solutions I've seen all say to add a Yes/No field to the underlying table. However, my records are coming from a query, not a table. Additionally, this particular query is used in many places, so I'm hesitant to make any modifications or additions to it, for regression testing reasons. I've also seen articles that advise avoiding Yes/No fields, and using Number fields instead.
To me, it seems like overkill to add a whole new field to a table and several queries, just to have a check box interface on one form. I would want those check boxes to be cleared when the form closes, so there's really no need to waste space storing them. Is there an easier way to do this? Am I missing something obvious here?
Thanks in advance for any replies, I appreciate it!!!
I'm happy to provide many more details as necessary, but I'll try to keep it brief for the first post.
I am trying to design a form, which would display records from a query. I would like to have check boxes next to each of the records returned from the query. The user would choose specific records by clicking in the check boxes, and then click a button that exports them to an Excel spreadsheet.
However, this has turned out to be trickier than I thought. The check boxes are displayed as blue squares by default, and individual records can't be selected. You can only check none or all of the records.
My understanding, from searching through old posts, is that this is because check boxes are unbound controls. The solutions I've seen all say to add a Yes/No field to the underlying table. However, my records are coming from a query, not a table. Additionally, this particular query is used in many places, so I'm hesitant to make any modifications or additions to it, for regression testing reasons. I've also seen articles that advise avoiding Yes/No fields, and using Number fields instead.
To me, it seems like overkill to add a whole new field to a table and several queries, just to have a check box interface on one form. I would want those check boxes to be cleared when the form closes, so there's really no need to waste space storing them. Is there an easier way to do this? Am I missing something obvious here?
Thanks in advance for any replies, I appreciate it!!!
Last edited: