In my "CRM" database, I am building out a reporting table that gets rollups of IDs from other tables (i.e. interactions, etc) and am trying to get one array of IDs that I can count to determine the number of unique IDs
Interactions Table
One to Many Contacts, lookup field of Contact Record IDs from "Contacts" Table
Projects Table
One to Many Contacts, Lookup Field of Contact Record IDs from "Contacts" Table
Reports Table
Rollup of Contact IDs from Projects, Rollup of Contact IDs from Interactions
My formula below doesn't get all the IDs. I don't know if maybe there's some nesting going on. Any suggestions for combining these arrays? properly?
COUNTA(ARRAYUNIQUE(ARRAYFLATTEN({Interaction Contact IDs}, {Project Contact IDs})))
Each of my rollups in Reports has this formula
ARRAYUNIQUE(ARRAYFLATTEN(values))