Hi everyone,
We’re having a challenge with some events that in some cases have a null value on a property. We want to send the events to GA4 Cloud. That destination does not accept null values so it will fail the event if we try to send it.
We figured to solve this with a coalesce on the mapping of these properties. Then, if it has null, it would use the fallback value to replace null with a string. It turns out you can not set a static value in the coalesce function on the mapping. It will only allow to select 2 properties in the coalesce function.
We try to avoid using an insert function as that makes the setup way more complex in our opinion.
Are there any ways around this?
Thanks!