I'm new to access and am struggling to set up a query to return the information I need.
Here's the scenario:
I have ~100 individuals who order items from me.
Each individual has ordered many items from me over time.
Each individual is only able to place one order per year, but multiple individuals could place an order in any given year.
I want to return the average age of each individual over their last 10 orders.
I have the following tables set up
-individual_ID, individual name
-item_ID, item name
-individual_ID & order year (indexed together), age
What is the best way to go about this?
Thank you!