Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am new to Qliksense and the syntax and completely stuck in the following task... I have two tables.
One is users and one is user actions with timestamp.
Now I want to count the users (id) of having the action with action="trial" and having the action action="purchase" with a later timestamp than the the "trial" one. So I want to count the users with a successful trial action as the had a later purchase.
These are the tables
I appreciate every help.
Thank you very much
HI @Falkvw
Try like below
Count({<action={'trial'}>} distinct Id)
To get the trial action user information
Hi thank you
i know how to count users having an action with trial. But what i want is count users that have an action with trial AND an action with „purchase“ with a later timestamp than the trial. Is that possible?