I am not sure which chart type to use here, given the two events would be logged for two different users:
Thanks!
Ah, yes. My bad, for funnel analysis, each event must be performed by the same user id.
One approach would be to generate an Invitation Received event for the user who got invited alongside the Invitation Sent event . So on the user level, funnel will be invitation received --> invitation accepted. But this can be a bit tricky to implement sometimes since in most of the implementations out there a user id can be only created after user accepts an invite.
Here’s a post which addresses a similar scenario:
Hi Congxing Cai
You will have to capture either the user_id ( of the user who invited ) or some sort of invitation_id as event properties on both the events - invitation sent and invitation accepted.
To measure conversion i.e. of all invites sent how many got accepted, you then use the Funnel chart by holding any of those event properties constant.
Hope this helps.
Saish Redkar thanks for the response. I did set the invitation_id as event properties.
However, the two events are associated with two different user ids. Is there a way to link two such events in a funnel chart?
Saish Redkar is there a way to log the event for user A during the session of user B? Thanks!
Afaik, that is something which needs to be implemented on your end. Just need to make sure you have the correct attribution of which user id is the doer vs receiver.
Hello! In React-Native mobile project we have error: Amplitude Logger [Error]: Failed to set cookie for key: AMP_TEST. Error: Cannot set property 'cookie' of undefined Error Component Stack: ``` The package version is "@amplitude/analytics-react-native": "1.5.1", Steps to Reproduce: * Initialize Amplitude with our API key…
We implemented first party tracking using the basic JS SDK on the browser and pointing the payload to our servers like this: amplitude.init(AMPLITUDE_API_KEY, { serverUrl: serverUrl, autocapture: { attribution: { excludeReferrers: [/domain1\.com$/, /domain2\.com$/], }, formInteractions: false, fileDownloads: false, }, });…
My Android app is primarily a background app. Does Amplitude track events for such an app? Please let me know.
here is the referance graph: https://app.amplitude.com/analytics/demo/chart/new/363tk5og In this graph, retention is currently being calculated based on the next day, but I want to analyze it based on the previous day instead. Example: For July 27, we should compare retention against July 26, not July 28. * So for 1-day…
Hi everybody! I need your help with a client request: my client is used to analyze landing pages performance with the standard report from GA4 and I need to create something similar in Amplitude. What I already have: * session entries grouped by page URL * purchase event calculated as session totals grouped by page URL and…