Apr 23, 2019 11:18 AM
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
Apr 23, 2019 12:31 PM
Hi @Peter_Steinberg - if this is your Investments
table:
Back in your People
table you will have this:
The {Most Recent Investment}
field is a rollup formula:
So, a rollup of the {Investment Date}
field from the Investments
table using MAX(values)
You can then sort by the rollup field.
JB
Apr 23, 2019 01:11 PM
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
Nov 29, 2021 06:57 AM
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.
Nov 29, 2021 01:42 PM
Hi @Richard_Cawthorn - unfortunately, there’s no way to access another field of a rolled-up field.
Nov 30, 2021 05:46 AM
Thank you for saving me alot of wasted time banging my head over that.