web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Update DataTable insid...
Power Apps
Answered

Update DataTable inside DataCard to Sharepoint List

(0) ShareShare
ReportReport
Posted on by 34
I am displaying data in a Data Table, and this Data Table is inside a Data Card.
Is it possible to update multiple rows in the Data Table into Column A with a bullet point?
If so, how should the code be written?
I have the same question (0)
  • Verified answer
    VASANTH KUMAR BALMADI Profile Picture
    266 on at

    Yes, you can update multiple rows in a Data Table's column (e.g., "ColumnA") by concatenating values with bullet points. However, since a Data Table in PowerApps is read-only when inside a Data Card (like in a form), you need a workaround to modify the data before displaying it.

    Solution: Using a Collection for Displaying Data with Bullet Points


    1. Load Data into a Collection

      If your Data Table is showing data from a Dataverse table (or another source), store the data in a collection first:

       
      ClearCollect(colData, YourDataSource)
      

    2.  

      Modify ColumnA by Concatenating Multiple Rows

      To display "ColumnA" with bullet points, create a new collection with formatted text:

       
      ClearCollect(
          colUpdatedData,
          AddColumns(colData, "UpdatedColumnA", "• " & ColumnA)
      )
      

    3.  

      Bind the Updated Collection to the Data Table

       

      • Set Items of the Data Table to colUpdatedData

      • Change the displayed column in the Data Table to "UpdatedColumnA"


      •  


    4.  
     

    Alternative: If Using a Gallery Instead of a Data Table

     

    If a Data Table inside a Data Card doesn't support modifications, you can use a Gallery instead:

     

    • Set Items of the Gallery to:
      ForAll(colData, "• " & ColumnA)
      

    • Use a Label inside the Gallery to display the formatted text.


    •  
  • praeclarus Profile Picture
    34 on at
    VASANTH KUMAR BALMADI Thank you for your kindness but another question.
    If i woud like to update multiple rows from data table in sharepoint list, how can i do that?

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 721 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 320 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard