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 / Flow Run command has "...
Power Automate
Unanswered

Flow Run command has "invalid number of arguments" error for any parameters

(0) ShareShare
ReportReport
Posted on by 43

I'm attempting to pass parameters to a flow that is the button action in a PowerApp.  The action is <flow name>.Run().  No matter what arguments I give to Run, I get an "invalid number of arguments" error.  This implies that no arguments are accepted.  Is this the case?  Other discussions of Run seem to indicate that it does accept arguments.  In that case, what am I doing wrong?  And if it doesn't accept arguments, how else can these be delivered to the invoked flow?

Categories:
I have the same question (0)
  • v-yamao-msft Profile Picture
    on at

    Hi JosephBoland,

     

    Your flow is triggered by PowerApps button, then what’s the following action? Please share a screenshot of your flow configuration.


    To test this issue, I have created a simple flow. The Flow is triggered by PowerApps, the following action is “SharePoint – Create item”.


    In the SharePoint list, I have several columns including Single Line of Text, Number, Date and Time.


    In the flow, I select the dynamic content “Ask in PowerApps” for all the fields.


    The following screenshot is the flow configuration of my flow.
    3.PNG


    On the app, add a button and other needed controls. Then configure the button’s OnSelect property as:

    'PowerApp->Createitem'.Run(TextInput1.Text,Value(TextInput2.Text),DatePicker1.SelectedDate,DatePicker2.SelectedDate,Label1.Text,TextInput3.Text)


    Specifying parameter to each column, I don’t get the error message you mentioned.

    4.PNG

     

    Please try again with it on your side and take this doc for a reference:
    https://docs.microsoft.com/en-us/powerapps/using-logic-flows

     

    If you are still having the issue, please show me more details to help reproduce this issue on my side.


    Best regards,
    Mabel Mao

  • JosephBoland Profile Picture
    43 on at

    Hi Mabel,

     

    As I understand your proposed solution, it does not work in my environment.  Screenshots are below; here's a description of the components:

     

    1. SharePoint online list called "Messages" with Message Title, Message Text, and Audience columns.
    2. PowerApps form with a "Send Message" button.
    3. Flow called "Send SMS Messages" that is triggered by the PowerApps form.
    4. The "Send Message" button's On Select action is "SendSMSMessages.Run()"
    5. It is not possible to add any parameters to the Run command.  Doing so results in the "Invalid number of arguments" error.

     

    This shows the Run command when a Label control's Text property is added.  Same error with every other parameter I've tried.

     

    PowerApps_Run_error.PNG

     

    Here is a screenshot of the flow.  Note that another open issue with Microsoft, which apparently many others are having (see link below) is that Dynamic Content is not available for PowerApps.

    Flow_PowerApps_no_dynamic_content_final.PNG

     

     

    On the issue of missing "Dynamic Content" for PowerApps, see https://powerusers.microsoft.com/t5/Building-Flows/No-Dynamic-Content-Available-Ask-in-Powerapps-Missing/td-p/68716.

  • KYamazaki0207 Profile Picture
    14 on at

    Hi everyone,

     

    Sorry if I'm a little too late, but I've been having this issue and just found the solution.  No tricks - it's pretty easy:

     

    1. Ensure the name of your flow matches the "Ask in Powerapps" Flow variable (all characters before the underscore) that you're trying to pass, i.e. if your variable's name is "Sendanemail_To," then your Flow must be named "Sendanemail"
    2. Check how many copies of the same variable exist as an option in your Flow by clicking on the variable and scrolling to the bottom of your variable option window that pops up.  The number of copies will determine the number of arguments that you must include in the Run command in PowerApps, i.e. if you have "Sendanemail_To, Sendanemail_To_1,Sendanemail_To_2" available, you'll need to include three arguments in your Run command.
    3. At this point you may have to force PowerApps to recogize the updated flow immediately by either or all: (a) restarting PowerApps, (b) turning the flow off and turning it back on,/re-doing the Flow from scratch or via copying the Flow and deleting the original, ensuring the remaining copy is named per step #1.
    4. In Powerapps, assign your Flow as usual, and format the Run command parameters per this example: Sendanemail.Run(Text1,Text2...) where "Text" is either a Label or TextInput (with ".Text" appended, of course) or if you'd like to pass text directly as a parameter, just include whatever text you need enclosed in quotation marks.  In my case, I can either pass an email address enclosed in quotes, an email address that's a DataCardValue/Label/TextInput, or User().Email if I wanted an email sent to the user.
    5. Lastly, make sure that your number of arguments matches the number of variables per step #2.  If you don't need that many variables, assign double-quotes ("") in place of the variable.
  • zeus Profile Picture
    25 on at

    This is still hit and miss for me. I have already done "ask in powerapps" twice and powerapps thinks the flow has no arguments. I get the error warning (triangle with exclamation) icon.

     

    It takes a couple of tries, coming back and forth between the two apps to sync.Frustrating... It would be less frustrating if it tells you how many arguments is expected. 

  • Community Power Platform Member Profile Picture
    on at

    I am having the same error, just created an one command flow to test the parameters and on powerapps, when calling the flow I get an error message saying that the flow has 0 expected parameters.     "Invalid number of arguments (Received: 1 ; Expected: 0)

     

    on flow, I created a task to send a simple email and added the variable from dynamic contents / Ask in Powerapps on the subject line.

     

     

     powerapp

    Flow

  • Rashaad_Compass Profile Picture
    on at

    I was having the same issues. 

    Once I got PowerApps setup, I had to recreate the flow. 

    That fixed the issues. 

    The Flow was expecting 3 paramenters, even though it showed 1.

     

  • ITCareNV Profile Picture
    574 on at

    What helped for me was to add the variables in flow by "Ask in powerapps", after that in the PowerApps portal in Action => Flows => click on the Flow that is in the second section for it to connect to the Flow and than your parameters will be recognized. See screenshot. Hope this helps someone Smiley LOL 

     

    Screenshot:

    https://imgur.com/W8VjNDX

     

     

  • 365-Assist Profile Picture
    2,324 Moderator on at

    I just had the same problem. Thanks to all the replies in this thread most gave me bits of solutions. Here is what I did to solve it.

     

    1. In the PowerApps remove the Button OnSelect Function Details

    Annotation 2020-06-01 140549.jpg

    2. In Power Automate removed the 'Update File Properties' Action

     

    Annotation 2020-06-01 135526.jpg

    3 In PowerApps - Removed the PowerAutomate Source

    Annotation 2020-06-01 135851.jpg

    4.  In Powerapps - Added in the Power Automate Source back

    Annotation 2020-06-01 140115.jpg

     

    5.In PowerApps - Added back the OnSelect Function

    Annotation 2020-06-01 140929.jpg

     

    6. In Power Automated added back the PowerApp fields

    Annotation 2020-06-01 141047.jpg

     

    I hope this helps someone.

  • kaiserjake Profile Picture
    2 on at

    Can anyone spot the error in this command? PowerApps is saying Invalid Number of Arguments, received 2, expected 1.

     

    Set(varFileLink, UploadtoCDTSIOISharePointSite.Run(Last(AttachmentControl.Attachments).Name, varBase64Only).sharepointfilelink)

  • marcoswnunes Profile Picture
    11 on at

    Alright, I had the same issue and it was driving me crazy. Everything was working fine then after an update on my power automate flow I started to get that same error message.


    In my case the issue on my Powerapps trigger.

     

    When I checked on my power automate I had the following message:

    marcoswnunes_1-1648801948243.png
    When I checked my workflow, I noticed there was 3 required content inputs(content_inputs, content_inputs_1 and content_inputs_2). 

     

    marcoswnunes_2-1648802041430.png

     

    I have no idea why other 2 content inputs were created. I tried to delete but I couldn't. Then I deleted my trigger the re-added it but those extra parameters still there. 

     

    My solution was pass those extra parameters in my call on PowerApps so I could move on.

     ExporttoCSV.Run( "My power automate was expecting 3 paramets here" )

     

    First: JSON(colDataExported,JSONFormat.IncludeBinaryData & JSONFormat.IgnoreUnsupportedTypes
    Second: ""

    Third:  ""

     

     

    ExporttoCSV.Run(JSON(colDataExported,JSONFormat.IncludeBinaryData & JSONFormat.IgnoreUnsupportedTypes
    ),"","");

     

    There were cases where I has several required paraments. You can peek code to check it:

     

    marcoswnunes_3-1648802935322.png

     

    marcoswnunes_4-1648803005893.png

     

     

    Hope it helps someone in the future. 

     

     

     

     

     

      

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 Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 538 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 405 Moderator

#3
abm abm Profile Picture

abm abm 252 Most Valuable Professional

Last 30 days Overall leaderboard