For simplification, I'll use example data. Let's say I have a table that has, Year, Article, and Sales as columns. Articles could include any number of items (Shoes, Shirts, Coats, Hats, etc).
I'm trying to make a simple form that will allow the user to select Year in a combo box and it will show Sales ($) for that year by article. The kicker is that certain articles may or may not have been sold in any year.
When a year is selected in the combo box I want only those articles which had sales to display along with the sum of sales by article (for that year). How that is displayed doesn't matter terribly.
With my first attempt, everything worked as I wanted but only the first article would display in the field along with its sales. So then I was thinking of maybe doing a datasheet sub-form with Article and Sales as columns and somehow use the Year Combobox as a control, but I couldn't figure out how to get a combo box as a separate item when the subform is datasheet.
It'd be nice if I could have a multivalue field for the Articles, but I don't know how to have another multivalue field for Sales that corresponds with each Article item.
Any help/suggestion is greatly appreciated.