Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Suggested answer

Clear/Reset Modern Table Control

(2) ShareShare
ReportReport
Posted on by 73
Dear Team,
After a row is selected in a modern table control I would like to be able to reset the table control so that no items are selected. All of the solutions that I have found appear to work for other controls such as a gallery or a data table but don’t seem to work for the table control.
 
Thanks in anticipation, Craig 
  • Suggested answer
    SaiRT14 Profile Picture
    1,988 Super User 2025 Season 1 on at
    Clear/Reset Modern Table Control
    Track Selected Row:
    use the OnSelect property
    Set(SelectedRow, ThisItem)
     
    Create a Reset Button:
    OnSelect property
    Set(SelectedRow, Blank())
     
    Conditionally Highlight Selected Row
    Modify the table control's logic to highlight a row
    If(SelectedRow = ThisItem, HighlightColor, DefaultColor)
     
    Reset Action for the Table
    Default property for the selected row,
    Default = If(IsBlank(SelectedRow), Blank(), SelectedRow)
     
    Apply to Selection Logic:
    Use this logic to reset any other associated control or detail forms tied to the selected row

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1