web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Notification bell on P...
Power Apps
Unanswered

Notification bell on Power Apps Icon

(0) ShareShare
ReportReport
Posted on by 4
I want to display notification bell on Power Apps Icon .

For Example, Any leave request is created by user then i want to display number of pending leave on Power Apps Icon.
Like Whatapps / Instagram Etc.
Categories:
I have the same question (0)
  • Rajkumar_M Profile Picture
    3,747 Moderator on at
    @JP-23050700-0
     
    1. Add a Bell Icon
    Insert a bell icon from Insert > Icons > Bell and name it iconBell.
     
    2. Create a Collection on App Start or OnVisible
    If your leave requests are in a Dataverse table or SharePoint list (e.g., LeaveRequests), collect the count of pending requests:
    ClearCollect(
        colPendingLeaves,
        Filter(LeaveRequests, Status = "Pending")
    );

    ➡️ Place this in App.OnStart or Screen.OnVisible.
     
    3. Add a Label as Badge
    Add a Label on top of the bell icon and use the following settings:
    Text:
    CountRows(colPendingLeaves)
    Visible:
    CountRows(colPendingLeaves) > 0
     
    Style:
    Shape: Circle or oval.
    Background: Red.
    Text color: White.
    Font size: 12.
    Size: Small (e.g., 20x20).
    Position: Overlay the top-right of bell icon.
     
    Example X/Y (Position):
    If your iconBell has X=200, Y=50:
    X: iconBell.X + iconBell.Width - 10
    Y: iconBell.Y - 5
     
    Make It Live
    To auto-refresh the badge, you can:
    Use a Timer control to refresh colPendingLeaves.
    Or trigger ClearCollect(...) whenever a new request is submitted or modified.
     
    Optional: Use Context Variable
    Instead of collection:
    UpdateContext({ pendingCount: CountRows(Filter(LeaveRequests, Status = "Pending")) })
    Then use pendingCount for the label.
     
     
    Thanks!
     
    If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.
     
  • JP-23050700-0 Profile Picture
    4 on at
    @Rajkumar_M

    Thank You for your response.
     
    but, my requirement is that,
    When I pin canvas app in MS Teams, and any pending leave request arrived then,
    on top of canvas app icon , It showing as 1.
  • ronaldwalcott Profile Picture
    3,862 Moderator on at
    Can you provide a visualization of what you are trying to accomplish?

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 519 Most Valuable Professional

#2
11manish Profile Picture

11manish 489

#3
Haque Profile Picture

Haque 327

Last 30 days Overall leaderboard