Help

Re: Finding the most recent record in a subset of records

493 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Peter_Steinberg
6 - Interface Innovator
6 - Interface Innovator

I have a table that is a list of people. Call it “People”. Say there are 5 people.

Then I have a table that’s a list of deals. Call it “Deals”. Say there are 3 deals.

Each Deal record has a “closing date”.

Then I have a table that’s a list of investments made into Deals. Call it “Investments”.

Each person can invest in each deal. So there are as many as 15 records in the Investments table – one for each intersection of Person and deal.

I’m trying to come up with a way where, in the People table, I can see the date of the most recent investment each person made. And then I want to sort by that date. This way I can see who hasn’t invested in at least X months and I can reach out to them to try and reactivate them as an investor.

I’ve noodled on this for some time but no solution has come to me. Any ideas?

People can make Investments into Companies.

People can make as many investments as they

5 Replies 5

Hi @Peter_Steinberg - if this is your Investments table:

Screenshot 2019-04-23 at 20.26.10.png

Back in your People table you will have this:

Screenshot 2019-04-23 at 20.27.13.png

The {Most Recent Investment} field is a rollup formula:

36

So, a rollup of the {Investment Date} field from the Investments table using MAX(values)

You can then sort by the rollup field.

JB

JB-

This did the trick. You’re the best. Thanks!

(I knew of the Rollup field type – I just didn’t recall that you could apply functions to the results.)

-Peter

Hi @JonathanBowen,
Your “Most Recent Investment” solution worked perfectly for me. My only remaining problem is how to use the date in the Rollup to display associate data in the Deals table. Lets say the Deals table contains a text field called “Purchase” which describes what was purchased on the Investment date. How can I display the purchase text for Deal B that is associated with 22/4/2019 in Most Recent Investment? Would be grateful for any assistance you can give me.

Hi @Richard_Cawthorn - unfortunately, there’s no way to access another field of a rolled-up field.

Thank you for saving me alot of wasted time banging my head over that.