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 / ThisRecord.Value makes...
Power Apps
Suggested Answer

ThisRecord.Value makes an error inside a IF sentence

(0) ShareShare
ReportReport
Posted on by 565
Hi,
 
I have these set of data:
 
 
And for create the collection colUsers, I wrote:
 
ClearCollect(colUsers , AddColumns(colUniqueRequests, Country, Office365Users.UserProfileV2(ThisRecord.Value).country) , Name, Office365Users.UserProfileV2(ThisRecord.Value).displayName));
 
But, if I need to check is the user has another country setup in the tabla Holiday_Employees, I did:
 
ClearCollect(colUsers , AddColumns(colUniqueRequests, Country, If(!IsBlank(LookUp(Holiday_Employees, Email=ThisRecord.Value).Country.Name), LookUp(Holiday_Employees, Email=ThisRecord.Value).Country.Name, Office365Users.UserProfileV2(ThisRecord.Value).country) , Name, Office365Users.UserProfileV2(ThisRecord.Value).displayName));
 
And here, ThisRecord.value makes an error:
 
 
 
How can I fix it? Thanks for any help.
 
Categories:
I have the same question (0)
  • Try&Try Profile Picture
    8 on at
    Have you tried ThisRecord.Email
    or ThisRecord.Email. and See what available options you have?
  • Suggested answer
    timl Profile Picture
    37,229 Super User 2026 Season 1 on at
    Hi EmilioRoqueta69
     
    ThisRecord shouldn't be necessary here because it'll reference the Holiday_Employees table rather than the colUniqueRequests collection.
     
    This should hopefully work better for you.
     
    ClearCollect(
        colUsers,
        AddColumns(
            colUniqueRequests,
            Country,
            If(
                !IsBlank(LookUp(Holiday_Employees, Email = Value).Country.Name),
                LookUp(Holiday_Employees, Email = Value).Country.Name,
                Office365Users.UserProfileV2(Value).country
            ),
            Name,
            Office365Users.UserProfileV2(Value).displayName
        )
    );
    
     

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 296 Most Valuable Professional

#2
11manish Profile Picture

11manish 224

#3
Valantis Profile Picture

Valantis 181

Last 30 days Overall leaderboard