How do I track if a user has visited my application 10+ times in last 30 days? I am fairly new to Google Analytics. I have already registered and set up my tracking code, and normal page tracks are registered, but how do I get this type of data?
Share
I do not think GA can provide how many times a registered user of your site visited it. You may need to do it yourself.
Create a table to track
UserVistswhich stores theUserId,LoginDate,IPAddress. Whenever your user login succesfully to your site, add an entry to this table. Now you have the data in the table and you can do whatever analysis you want (30 days / 1 week /1 year …)