Behrooz Fard
Behrooz Fard

Reputation: 555

How get number of active users from Firebase?

I use Firebase to analyzing user data in my android project. When I want to get the number of all active users in the last 90 days, Firebase shows this chartenter image description here. But I don't know How many active users I have in the last 90 days?

Upvotes: 0

Views: 4058

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 600006

There is no built-in report to show the 90-day active users.

If you want to know how many users were active in the last 90 days, you'll have to export the data to BigQuery, and perform the required query there. There is a sample Google Data Studio template that looks similar to the Firebase console, which you might use as a starting point for your custom queries.

Upvotes: 1

Related Questions