I would like to know where do I find the feature for counting the number of visitors in power app.
Hi @nidhisingh1608,
Ooops, editing this reply as I didn't see @WarrenBelz response. I've listed a couple of alternative methods for both of your considerations.
Here are a couple of ways how to do this:
1. Access admin center (requires Power Apps Admin access or someone who does sending you a report), see following post:
2. Develop it yourself, this is high level which is dependent on your specific requirements (more complex then WarrenBelz version, but you would have a list of usernames and could develop various reports. Again, defer to your requirements):
1. Capture user name when app is accessed (i.e. store username on app start in Screen OnVisible property via global variable using If(IsBlank(Set(gblUserName, user().fullname function))).
2. Send user name to SP List on app start using same OnVisible Screen property (using patch function).
3. Return record count (via email, app, report, depends on requirements) via Power Automate Workflow using the HTTP Request (_api/web/lists/getByTitle('SPListName')?$select=ItemCount) which displays record count. This gives total count of records which would be different from unique visitors per day (again, depends on your requirements).
Let me know how it goes.
Best Wishes,
Matren
-------------------------------------------------------------------------------------------
Find this post helpful, give it a Thumbs Up
Solved your problem, click Accept as Solution so others can find it
Hi @nidhisingh1608 ,
The easiest way would be a separate list with a numeric field that you increment by 1 at App OnStart.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps