I want to measure the number of unique users per month who performed EITHER of several events. Do I just use
UNIQUES(A)+UNIQUES(B)+UNIQUES(C)
or would that still hold duplicate users (counts per event and just adds, or deduplicate as well)?
Hey razf6,Creating a custom event will be the ideal approach to measure the “number of unique users per month who performed EITHER of several events” use case.
I believe that the formula approach of UNIQUES(A)+UNIQUES(B)+UNIQUES(C) will just perform pure arithmetic sum of the unique counts without any deduplication.
Let me know if I have interpreted your use case correctly. Hope this helps.
Yes, played with this some more after posing here, you are right (both as to the custom event approach, and as to the “pure arithmetic sum” my original solution does).
Thanks
Hi, When I add a chart (widget) to my dashboard, and then go to the content and modify the chart (I user another type for exemple) and save, my dashboard doesn't reflect the latest modification. Would you by any chance know why ? Thank you
Hi, I am doing a simple analysis : number of views for each pages of my website. So I use Segmentation but I always end up with a chart AND the table below. I want to display only the table (easier to read). Is it possible and how ? Thank you
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…