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 / Lookup column value no...
Power Apps
Answered

Lookup column value not showing correctly in collection (FullName.Value showing error)

(1) ShareShare
ReportReport
Posted on by 537

Hi everyone,

I’m trying to collect records from my SharePoint list PREDBSRecords into a collection called colAllRecords, but my lookup column (FullName) isn’t displaying its text value properly.

Here’s my formula:



// PRE DBS (FullName is a lookup)
Collect(
    colAllRecords,
    AddColumns(
        ShowColumns(
            Filter(
                PREDBSRecords,
                Created >= Today() && Created < DateAdd(Today(), 1)
            ),
             FullName,OfficeLocation
        ),
        'Name', FullName.Value,
        'Staff', "PRE DBS",
        'Persent', false
    )
);


PowerApps shows an error under 'FullName.Value'.

I want to extract and display the actual text value from the lookup column instead of the record.

Could someone please help me fix this formula?

Thanks in advance! 🙏

 

Best Regards,
Pankaj Jangid (OyePanky)
Power Platform Developer
YouTube: @Oyepanky

Categories:
I have the same question (0)
  • Verified answer
    Daniel Bocklandt Profile Picture
    5,151 Super User 2026 Season 1 on at
    Hey @oyepanky,
     
    Those are the everlasting issues with special columns from SharePoiny. it sometimes feels like the Power Platform just hates them.
    But no worries, we’ll get this figured out together.
     
    Here’s what I like to do in those cases: go at it step by step.
     
    This is your current code:
    Collect(
        colAllRecords,
        AddColumns(
            ShowColumns(
                Filter(
                    PREDBSRecords,
                    Created >= Today() && Created < DateAdd(Today(), 1)
                ),
                 FullName,OfficeLocation
            ),
            'Name', FullName.Value,
            'Staff', "PRE DBS",
            'Persent', false
        )
    );
    Let’s start with this small adjustment:
    Collect(
        colAllRecords,
        AddColumns(
            ShowColumns(
                Filter(
                    PREDBSRecords,
                    Created >= Today() && Created < DateAdd(Today(), 1)
                ),
                 FullName,OfficeLocation
            )/*,
            'Name', FullName.Value*/,
            'Staff', "PRE DBS",
            'Persent', false
        )
    );
    Since the error seems to come from the AddColumns part FullName.Value mapping first and see what your collection returns. 
    You might get something like this:
     
     

    You’ll probably notice a nested column.

    When you select it in the data viewer, you’ll see the actual values (SharePoint lookups usually return an ID and Title record).
    If you see the lookup column and the expected value is there, we can move forward with a few targeted tests.

    Could you share the exact error message you’re getting? That’ll help confirm whether it’s a lookup-type issue or something else.

     

    If this solved your problem, please mark it as Solved to help others find the solution faster.
    If you found it helpful, consider giving it a Like to support each other in this community!

    Thanks, and happy building!

  • Suggested answer
    Youssef_Arouay Profile Picture
    200 on at
    A Lookup column (like FullName) stores a record, not plain text. It has subfields such as .Id and .Value 
     
    Try this code instead :

    Don’t use ShowColumns() before AddColumns() — apply it after you’ve expanded the lookup :

    Collect(
        colAllRecords,
        ShowColumns(
            AddColumns(
                Filter(
                    PREDBSRecords,
                    Created >= Today() && Created < DateAdd(Today(), 1)
                ),
                "Name", FullName.Value,
                "Staff", "PRE DBS",
                "Persent", false
            ),
            "Name",
            "OfficeLocation",
            "Staff",
            "Persent"
        )
    );
     

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 483

#2
WarrenBelz Profile Picture

WarrenBelz 399 Most Valuable Professional

#3
11manish Profile Picture

11manish 327

Last 30 days Overall leaderboard