I’m going crazy trying to figure out how to remove spaces from this ARRAYUNIQUE.
Here’s an example of what I’m getting in the rollup field:
- “5f286eebbd491e7410167db7”, “5f286eebbd491ee230167eaf”, “5f286eebbd491e8175167e8f”
I’ve tried adding another formula field alongside this to substitute the spaces using this:
- SUBSTITUTE({Rollup Field},", “,”,")
But it throws an ambiguous error.
Oddly, it seems like the ARRAYJOIN is working fine. That defaults to no space, and it seems like you can run the SUBSTITUTE formulas over them with no issue.
Are there any known differences with ARRAYUNIQUE? Any ideas on how I can strip the strings from it?
- Current output: “5f286eebbd491e7410167db7”, “5f286eebbd491ee230167eaf”, “5f286eebbd491e8175167e8f”
- Desired output: “5f286eebbd491e7410167db7”,“5f286eebbd491ee230167eaf”,“5f286eebbd491e8175167e8f”
Thanks