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 / ForAll - ThisRecord br...
Power Apps
Answered

ForAll - ThisRecord broken?

(1) ShareShare
ReportReport
Posted on by 36

I have a piece of code which was definitly working fine 2 days ago, now is completely broken. I have tackled it down to be a broken funcktionallity in Combination of "ForAll" and "ThisRecord". I have prepared a simplified code snippet to show the issue:

 

 

 

ClearCollect(Collection1;Table({ID:1};{ID:2};{ID:3}));;
ClearCollect(ItemsToRemove;Table({ID:2}));;


ForAll(ItemsToRemove;
 Notify("ID of Record of ItemsToRemove-Collection:" & ThisRecord.ID & " - this is correct." & Char(13)&
 "ID of Looked up Value in Collection: " & First(Filter(Collection1;ID=ThisRecord.ID)).ID &". This is incorrect. Should be 2, not 1" 
));;

 

Put this snippet on a button and you will be able to reproduce the issue.

 

I am pretty sure this is a major bug which was introduced within the last 48 hours.

This has enourmos impacts. LookUps / Filters / RemoveIf to a SQL Server Database will have the exact same issue and affect random records. Due to this, our Canvas App is currently deleting random records from a SQL Server Database instead of selected ones.

 

 

Categories:
I have the same question (0)
  • Verified answer
    Gerard Simpson Profile Picture
    2,987 Moderator on at

    Hi @Sascha2 

     

    It might be something to do with the nested 'ThisRecord' which is causing conflicts.

     

    Can you try redefining your source using the 'As' function, so you can use something other than ThisRecord and potentially avoid conflicts - in this example I have just called it 'ITR'

     

    ClearCollect(Collection1;Table({ID:1};{ID:2};{ID:3}));;
    ClearCollect(ItemsToRemove;Table({ID:2}));;
    
    
    ForAll(ItemsToRemove As ITR;
     Notify("ID of Record of ItemsToRemove-Collection:" & ITR.ID & " - this is correct." & Char(13)&
     "ID of Looked up Value in Collection: " & First(Filter(Collection1;ID=ITR.ID)).ID &". This is incorrect. Should be 2, not 1" 
    ));;

     

     Hope this Helps

  • Sascha2 Profile Picture
    36 on at

    Thanks, indeed using the Alias here seems to solve the issue. I'll implement that. Thanks so far.

  • CU30070528-1 Profile Picture
    on at
    Facing same issue and Alias not working as expected

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!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 531 Most Valuable Professional

#2
Haque Profile Picture

Haque 261

#3
Kalathiya Profile Picture

Kalathiya 221 Super User 2026 Season 1

Last 30 days Overall leaderboard