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 / Dataverse Created By V...
Power Apps
Suggested Answer

Dataverse Created By Value in Clear Collect

(1) ShareShare
ReportReport
Posted on by 938
ClearCollect(colpogress,ShowColumns(DataverseTable,Name,Notes,'Created By'.'Full Name' ,'Created On'))
 
'Created By'.'Full Name' is throwing an error - how do I get the 'Full Name'  
 
Name isn't valid. 'Created By' isn't recognized
 
Categories:
I have the same question (0)
  • Suggested answer
    Valantis Profile Picture
    6,735 on at
     
    ShowColumns can't drill into a related record's field (like 'Created By'.'Full Name') as part of its column list. Use AddColumns instead to create the flattened column first, then select with ShowColumns:
    ClearCollect(
        colpogress,
        ShowColumns(
            AddColumns(
                DataverseTable,
                CreatedByName,
                'Created By'.'Full Name'
            ),
            Name,
            Notes,
            CreatedByName,
            'Created On'
        )
    )
    AddColumns creates a new column called CreatedByName that pulls the Full Name from the Created By lookup. Then ShowColumns can include it alongside your other flat columns.
     

     

    Best regards,

    Valantis

     

    ✅ If this helped solve your issue, please Accept as Solution so others can find it quickly.

    ❤️ If it didn’t fully solve it but was still useful, please click “Yes” on “Was this reply helpful?” or leave a Like :).

    🏷️ For follow-ups  @Valantis.

    📝 https://valantisond365.com/

    💼 LinkedIn

    ▶️ YouTube

  • Suggested answer
    Kalathiya Profile Picture
    2,456 Super User 2026 Season 1 on at

    In Dataverse, you can’t directly use 'Created By'.'Full Name' inside ShowColumns(). Instead, use AddColumns() to pull the value first, then reference it in ShowColumns.

    For example, add a column like CreatedByName: 'Created By'.'Full Name' and then use it in your collection.

    So for example your collection code will be like this:

    ClearCollect(
        colpogress,
        ShowColumns(
            AddColumns(
                Courses,
                CreatedByName, //Specify the name of the new column you want to create or expand
                'Created By'.'Full Name'
            ),
            Name,
            Notes,
            CreatedByName,
            'Created On'
        )
    )
    ---------------------------------------------------------------------------
    Glad it helped 🙂
    If this fixed your issue,
    please click “Does this answer your question?” to mark it as verified so others can find the solution easily.
    A Like 👍 is always appreciated, and I’m around if you need more help @Kalathiya

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 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard