In my game, I’m attempting to log custom fields, which works out fine. I’ve had the funnel events checked over a few times and there’s no issues with them, the custom fields are logged perfectly fine
The issue is that I can’t seem to filter the custom field for the funnel as it shows there are no custom fields available, even though they seem to be logged properly. So I’m not sure if I’m missing something.
Hi Fudny:
I explored the raw data a bit and got an theory.
To ensure funnel can be correctly recorded, we will make sure when a user join on step 1, its attribute like age, gender, custom fields are all locked. So if the same user finishes the following steps but with different attributes, we will ignore the change and honor the first value assigned to the user.
After looking at some user’s data, I found that the user first step Player Joined for your funnel always have no custom field value assigned. My guess that is how you implement the code that the custom field value is determined after they join and get assigned starting from step 2.
This is documented here. https://create.roblox.com/docs/production/analytics/funnel-events#use-funnel-filters
So I suggest you change how the value is assigned in your current implementation a bit to let the custom field value start to populate since step 1.
Please let me know if you still have more questions on this.