Hello all.
What I'm trying to do: I have a set of records and in the records there is a field named [StatementFrequency]. [StatementFrequency] can either be "quarterly" or "annual." I'm creating an append query to append all the "quarterly" records into another table. But what I am trying to do is create a combobox that allows you to select which quarter (3/31/year, 6/30/year, 9/30/year, and 12/31/year), and then populates the [Quarter] field on my new table that just had the records added from the append query.
If you need me to try and explain it better I shall.
Thank you
EDIT: A little better explained
I have about 370 records in my [PlanTable]. [PlanTable] has about 20 fields, and one of them is [StatementFrequency]. Right now, [StatementFrequency] is populated with either "Quarterly" or "Annual." I'm creating a form that allows the user to come in, Pick which quarter he is in from a combo box(for example... 6/30/(year)), run the query, and append all the "Quarterly" records form my [PlanTable] into my [QuarterlyReportTrackingTable]. When the user appends the "Quarterly" records, I would like for the field [QuarterEndDate] on my [QuarterlyReportTrackingTable] to be populated with the value the user selected from the combo box.
Hope that clears things up a bit.
Additional Info:
I'm not experienced in VBA.