web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details
Power Apps - Building Power Apps
Answered

Count Button Clicks

Like (0) ShareShare
ReportReport
Posted on 17 Mar 2025 16:11:34 by 786
Hi,

I have a requests for something that I have not come across how to do before.
 
The challenge is I have an app that has a button that currently copies something on Select, however to add to its functionality I want to build something that counts the amount of times this button is selected during a working day (the app is accessed by multiple users)
 
Is this doable if so what is the best approach to doing so?
 
 
  • Verified answer
    MS.Ragavendar Profile Picture
    3,069 Super User 2025 Season 2 on 18 Mar 2025 at 12:15:04
    Count Button Clicks
    Approach 1: Using a SharePoint List 
    • Create a SharePoint List name 'Button Clicks' with columns (UserEmail,ClickDate, Count)
    • Button (OnSelect) Enter the Patch Code.
    •  This logs each click separately with the user’s email and date.
    Patch(
        ButtonClicks, 
        Defaults(ButtonClicks), 
        {
            UserEmail: User().Email,
            ClickDate: Today(),
            ClickCount: 1  // Each press is logged separately
        }
    )
    
    Total Clicks for the Day
     
    Insert a label or Textbox control and filter the records based on the date as shown.
     
    CountRows(Filter(ButtonClicks, ClickDate = Today()))

    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
     

Helpful resources

Quick Links

Telen Wang – Community Spotlight

We are honored to recognize Telen Wang as our August 2025 Community…

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading complete