Skip to main content

I want to create a cohort for users representing abandoned basket
below is the logic which I tried :

users who:
have performed event = "banana added to bag"
or have performed event ="apples added to bag"

(and so on including all the products where 'added to bag' is associated with
products )

also who have not 
performed an event = "order placed"

As you can see, there could be hundreds of products like these and it is not
feasible to add them one by one.


Is there a way where I can somehow select 'added to bag' keyword and it includes
all such products at once?


Any help would be appreciated.
Thanks

Hey @Danish 

Ideally, it’s a good practice to have such events instrumented in a way that the specifics are captured in an event property. eg. “Items Added “ and item = ‘apples’ ,etc. But this largely depends on your exact business use case and your overall data schema and may not work for all.

For your current use case, you can use the “Event Name” Property to pick up events having a common string in their name.

 

This should be giving you all the events having “added to bag” in their event name.

 

Hope this helps.


Thanks @Saish Redkar .. This really helped a lot.. Appreciate your prompt help


Reply