web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details
Power Apps - Building Power Apps
Answered

Collection in Sharepoint List import

Like (0) ShareShare
ReportReport
Posted on 2 Jan 2023 10:33:03 by 56

Hello I have already received help but after consultation with my boss, I still have to change something. Currently the collection is transferred to sharepoint list but only randomly in free rows. I need to change that. How do I get it to transfer the data that is collected in my app to the correct row?
This is my App:

App.png

And this is my Sharepoint List. I Create every Day the Entrys for each Gebäude:

Crounex_4-1672655403202.png

And this is my fromel/syntax that I built with the help of the forum:
ForAll(col_Daten;
Patch(Betriebsdaten;
LookUp(Betriebsdaten; AblesewertNumerisch = Blank() && Mitarbeiter = Blank() && Bemerkungen = Blank());
{
AblesewertNumerisch:AblesewertNumerisch;
Bemerkungen:Bemerkungen;
Mitarbeiter:Mitarbeiter
}
)
)

Categories:
  • Verified answer
    LaurensM Profile Picture
    12,510 Moderator on 02 Jan 2023 at 12:42:09
    Re: Collection in Sharepoint List import

    @Crounex, no the values between {}.

    The code below should do the trick:

     

    ForAll(col_Daten As Main;
     Patch(Betriebsdaten;
     LookUp(Betriebsdaten; ID = Main.ID);
     {
     AblesewertNumerisch:Main.AblesewertNumerisch;
     Bemerkungen:Main.Bemerkungen;
     Mitarbeiter:Main.Mitarbeiter
     }
     )
    )

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2

Loading complete