I am trying to figure out how to key off several attributes to then populate one attribute. I have some dates that track the last time a visitor does something, then that populates a timeline and then I have a number that counts the number of entries in that timeline. My desire is to reference the number and if it's greater than X, I would like to store a true value to signify the visitor is prime for a offer or recommendation. For example: visitor does A for the 3rd time which means I would like to populate an attribute like the following: {"attribute A":"true"} Now, if on the next visit they meet the requirements for B I would like the result to be: {"attribute A":"true","attribute B":"true"} And so on for all the attributes I have. Because of the timeline, if any of the attributes fall below 3, or whatever parameter I set, then I'd like them to either drop out, or be set to false. If I have to set them all to false at the beginning that's fine, I'd just like to have them change back and forth as they meet or fall out of the given criteria. The criteria will likely be different for each one, but as of now they're all numbers based on timeline entries.
... View more