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 Automate / Powerautomate compose ...
Power Automate
Unanswered

Powerautomate compose function not reading all outputs

(0) ShareShare
ReportReport
Posted on by

I am building a flow to integrate with powerapps. It needs to take outputs out from text which users type in powerapps. 

im using the compose function, however it isn't registering all compose items.

I currently have 30 compose items within the flow, but only 28 are being read, with powerapps confirming that only 28 arguments are there. Additionally, when i peek code it is not reading all of the compose items, for example "compose8_inputs_1" is not present.

 

How do i get powerautomate to register all of my compose items (i intend to add more)

Is there a maximum amount of compose items it can register, and if so what other option is there to bring user text out of powerapps to populate a word document

 

Peek code

Power1231_2-1690936698280.png

 

Power1231_3-1690936719679.png

 

Compose8_input_1 is present

Power1231_4-1690936801414.png

 

 

 

Powerapps

Power1231_0-1690936638797.png

Power1231_1-1690936646115.png

 

Categories:
I have the same question (0)
  • SanmeshG Profile Picture
    1,947 Moderator on at

    Hi @Anonymous ,

     

    Creating 28 or more Compose actions or passing those many input actions would be a tedious approach in my view , I would suggest you to create a collection in PowerApps with All User inputs and pass that collection as JSON from PowerApps to Power Automate.

     

    In Power Automate you can use the Parse JSON action to easily read all the columns.

     

    Hope this helps !

     

    If this answers your question please give this a thumbs up and accept this as a solution.

     

    Thanks

  • Community Power Platform Member Profile Picture
    on at

    Still quite new to this and that sounds like a good work around. How would i be go about enacting your suggestion?

  • SanmeshG Profile Picture
    1,947 Moderator on at

    Hi @Anonymous  ,

     

    If you are using Form , I recommend you to use the formula as below. 

    ClearCollect(
     colData,
     Form1.Updates
    )

    Here colData will have all the column from your Form(Data source used for your Form).

     

    But if you are using input controls , then you have to create a collection as below and send the data from PowerApps to Power Automate.

    ClearCollect(
     colDataNew,
     {
     //Text
     Title: DataCardValue1.Text,
     //Single Select Choice
     Country: DataCardValue3.Selected.Value,
     //Date - Value selected from Date Input Conrol
     DOJ: DataCardValue12.SelectedDate,
     //Multi-Select Choice Column
     CountriesVisited: DataCardValue13.SelectedItems,
     //User or Group Single Select
     Manager: DataCardValue15.Selected,
     //Multi Select User
     TeamMembers: DataCardValue14.SelectedItems,
     //Lookup
     EmployeeId:DataCardValue17.Selected
     }
    );
    //Send PowerApps Data to PowerAutomate
    'sendCollectionData'.Run(
     JSON(
     colDataNew,
     JSONFormat.IgnoreBinaryData
     )
    )

     

    Else why don't you pick the data directly from your Data source and input them into your Word Doc. This would be the best approach using trigger such as when an item is created or when an item is created or modified and get the data from your SP list(Sorry I missed the point that you are creating the word doc earlier).

     

     

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…

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
trice602 Profile Picture

trice602 398 Super User 2025 Season 2

#2
David_MA Profile Picture

David_MA 323 Super User 2025 Season 2

#3
Expiscornovus Profile Picture

Expiscornovus 183 Most Valuable Professional

Last 30 days Overall leaderboard