I have a simple linked table. There is a table of CASES with a bunch of fields and then another table called CASE ACTIVITY which has scheduled activities for each CASE, so the tables are linked by CASEID which is the primary field on CASES.
That all works fine. Under CASE ACTIVITY each row is a dated activity, so :
CASEID | Scheduled action | Date |
65 | Sent for review | 10/10/2024 |
65 | Publish findings | 12/10/2024 |
I would like to have a formula field in CASES that shows the date when the next activity occurs. And I started with a formula field that simply said "MIN({Date (from Case Activity)})" but it returns a value of zero.
Ultimately it would also need to not pick dates that have already passed.
Any ideas?