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 / Need Help with Add Col...
Power Apps
Answered

Need Help with Add Columns Formula

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

 I need help with a formula. If anyone has a better way to do this then that would be awesome.

 

ClearCollect(ReviewList, 
AddColumns(Filter(FSDetailSupport_, Review_Status.Value="Sent to Reviewer3" || Review_Status.Value="Sent to Reviewer2" || Review_Status.Value="Sent to Reviewer1"),
"CurrentReviewer",
If(Review_Status.Value="Sent to Reviewer1",LookUp(FSDetailSupport_,ID=ID,Reviewer_1.DisplayName),
If(Review_Status.Value="Sent to Reviewer2",LookUp(FSDetailSupport_,ID=ID,Reviewer_2.DisplayName),
If(Review_Status.Value="Sent to Reviewer3",LookUp(FSDetailSupport_,ID=ID,Reviewer_3.DisplayName)))))); 

 

I currently am using the above collection formula to add a column called "Current User" that looks up the name of the user based on the value in the Review_Status Column. For whatever reason it will not pull in the user for column when the review status is "Sent to Reviewer3". I have tried everything. It's not formatting. I don't know how to fix it, but I really need it to do this. 

 

Is there a better formula I could use?  

Categories:
I have the same question (0)
  • Verified answer
    v-bofeng-msft Profile Picture
    Microsoft Employee on at

    Hi @Becca51178 :

    I guess this condition "ID=ID" may cause ambiguity.Please Try:

     

    ClearCollect(ReviewList,
                AddColumns(
                     RenameColumns(Filter(FSDetailSupport_,Review_Status.Value="Sent to Reviewer3" || Review_Status.Value="Sent to Reviewer2" || Review_Status.Value="Sent to Reviewer1"),"ID","IDD"),
                     "CurrentReviewer",
                     If(Review_Status.Value="Sent to Reviewer1",
                        LookUp(FSDetailSupport_,ID=IDD,Reviewer_1.DisplayName),
                        If(Review_Status.Value="Sent to Reviewer2",
                           LookUp(FSDetailSupport_,ID=IDD,Reviewer_2.DisplayName),
                           If(Review_Status.Value="Sent to Reviewer3",
                           LookUp(FSDetailSupport_,ID=IDD,Reviewer_3.DisplayName))))));

     or

    ClearCollect(ReviewList,
     AddColumns(
     RenameColumns(Filter(FSDetailSupport_,Review_Status.Value="Sent to Reviewer3" || Review_Status.Value="Sent to Reviewer2" || Review_Status.Value="Sent to Reviewer1"),"ID","IDD"),
     "CurrentReviewer",
     If(Review_Status.Value="Sent to Reviewer1",
     Reviewer_1.DisplayName,
     If(Review_Status.Value="Sent to Reviewer2",
     Reviewer_2.DisplayName,
     If(Review_Status.Value="Sent to Reviewer3",
     Reviewer_3.DisplayName))))); 

    or

    ClearCollect(ReviewList,
     AddColumns(
     RenameColumns(Filter(FSDetailSupport_,Review_Status.Value="Sent to Reviewer3" || Review_Status.Value="Sent to Reviewer2" || Review_Status.Value="Sent to Reviewer1"),"ID","IDD"),
     "CurrentReviewer",
     Switch(Review_Status.Value,
     "Sent to Reviewer1",
     Reviewer_1.DisplayName,
     "Sent to Reviewer2",
     Reviewer_2.DisplayName,
     "Sent to Reviewer3",
     Reviewer_3.DisplayName))); 

    If you still have any question,please don't hesitate to let me know.

    Best Regards,

    Bof

  • WarrenBelz Profile Picture
    156,119 Most Valuable Professional on at

    Hi @Becca51178 ,

    Just for something different - you might try the new As statement to cure the ambiguity. I have also done a With() and a Switch() to condense the code a bit.

    ClearCollect(
     ReviewList, 
     AddColumns(
     Filter(
     FSDetailSupport_, 
     Review_Status.Value="Sent to Reviewer3" || 
     Review_Status.Value="Sent to Reviewer2" || 
     Review_Status.Value="Sent to Reviewer1"
     ) As vReview,
     "CurrentReviewer",
     With(
     {
     vName:
     LookUp(
     FSDetailSupport_,
     ID=vReview.ID
     )
     },
     Switch(
     Review_Status.Value,
     "Sent to Reviewer1",
     vName.Reviewer_1.DisplayName,
     "Sent to Reviewer2",
     vName.Reviewer_2.DisplayName,
     "Sent to Reviewer3",
     vName.Reviewer_3.DisplayName
     )
     )
     )
    )

     

    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.

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    I really like this code but its throwing an error on the Switch part

    Becca51178_0-1595944816402.png

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thanks! These both worked great!

  • WarrenBelz Profile Picture
    156,119 Most Valuable Professional on at

    Thanks @Becca51178 ,

    You do have the option (up to you entirely) of accepting more than one solution, especially if they are helpful in the future for others.

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 326 Most Valuable Professional

#2
11manish Profile Picture

11manish 168

#3
sannavajjala87 Profile Picture

sannavajjala87 75 Super User 2026 Season 1

Last 30 days Overall leaderboard