I have a formula to autopopulate a drop-down list field to show one or more items, grouping together a number of related rows in another table.
=JOIN(INDEX(DISTINCT(COLLECT({EcoTech Activities Managers}, {Activities PIDs}, =ID@row)), 0), CHAR(10))
Basically collect the names of managers from another table where the key matches the key of this specific row. This has worked fine in the past, and typically looks like this:
But today, it's started doing this, returning data from a different column and row. "P2" is the value in the first row of this table, it's not even a value in the lookup table. That's a bug right!?
If I refresh the table, the correct values come back, then after a minute of two, they recalculate to this incorrect value. What's going on?
BTW - this isn't the only formula on this field that is doing this. For some reason the formulas keep replacing results with data from the first row in the current table.
Any ideas what might have caused this error, and is there any way I can mitigate it, or fix it?