Hello Everyone,
I am having a methodology issue.
I am working on a personal price tracking project, in my case, it is computer parts. But I believe this could translate to almost anything.
I have multiple tables, one for each component type (CPUs, RAM, Motherboards, etc). These tables display the characteristics of the product.
There is an additional table that is called Updates, the updates table links to each of the component type tables, and tracks, price, link to vendor and date the entry was added.
What I'm trying to achieve, is on the components tables, I'd like to show the most recent price for each component. I've read a few examples that people have said about sorting by having a Rollup of the date:
max(values)
However, I'm not able to discern how I will retrieve the price if I did that.
Can anyone orient me toward solving this problem?
Many thanks