Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Automate - General Discussion
Unanswered

Combine rows of an arrays

(0) ShareShare
ReportReport
Posted on by

Hello just want to ask how can i do combining each row of a 3 arrays.

 

Array 1

AAAAA

AAAA2

AAAA3

 

Array 2

123123

122123

123453

 

Array 3 

dyyy

syyy

ayyy

 

Result:

AAAAA; 123123; dyyy

AAAA2; 122123; syyy

AAAA3; 123453; ayyy

 

or Result

AAAAA

123123

dyyy

 

AAAA2

122123

syyy

 

AAAA3

123453

ayyy

 

 

  • Chriddle Profile Picture
    7,884 Super User 2025 Season 1 on at
    Re: Combine rows of an arrays

    Assuming you have 3 arrays from Compose actions named Array1, Array2 and Array3,

    add a Select action with

    From:

    range(0,length(outputs('Array1')))

     Map:

    concat(
    	outputs('Array1')[item()],
    	'; ',
    	outputs('Array2')[item()],
    	'; ',
    	outputs('Array3')[item()]
    )

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

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!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 1

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 1

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 1