From a metrics sheet I am looking at another sheet with a formula which gathers the docket number if the date is before today and it returns the result perfectly. 12234, 67899, 98765
=JOIN(COLLECT({Docket}, {DueDate}, <TODAY()), ", ")
I am trying to modify this formula to return 2 variables (docket + Client) when date is before today but cant figure it out. looking for 12234_honda, 34567_Acme, 56789_Ford
=JOIN(COLLECT({Docket},{Client}, {DueDate}, <TODAY()), ", ") or
=JOIN(COLLECT({Docket}+{Client}, {DueDate}, <TODAY()), ", ")