The template language function ‘length’ expects its parameter to be an array or a string Power Automate

In this tutorial, I have explained how to fix the error, “The template language function ‘length’ expects its parameter to be an array or a string. The provided value is of type ‘Integer’“.

The template language function ‘length’ expects its parameter to be an array or a string

Recently, I was doing a Power Automate of flow example on how to auto generate column value using Power Automate or Flow in SharePoint.

There I was using an expression like the below, which was causing the issue.

length(triggerBody()?['ID'])

Basically, I was trying to get the length of the ID column value.

But it throws an error as,

Unable to process template language expressions in action ‘Initialize_variable’ inputs at line ‘1’ and column ‘10896’: ‘The template language function ‘length’ expects its parameter to be an array or a string. The provided value is of type ‘Integer’. Please see https://aka.ms/logicexpressions#length for usage details.’.

And the error looks like the below:

the execution of template action 'set_variable' failed: an unexpected exception encountered when evaluating branching condition.
The template language function ‘length’ expects its parameter to be an array or a string

I was using the expression below:

the execution of template action 'apply_to_each' failed: the result of the evaluation of 'foreach' expression '@triggeroutputs()?['body/resourcedata/responseid']' is of type 'integer'. the result must be a valid array.

Here, I was trying to get the length of the ID list column, this is an integer column.

So, we need to convert to string to get the length of the ID column value.

In Power Automate or flow expression, we can convert int to string like below:

length(string(triggerBody()?['ID']))

The expression should look like the below:

actionbranchingconditionnotsatisfied. the execution of template action 'create_item' skipped: the branching condition for this action is not satisfied.
power automate length

This is how we can get the length in Power Automate or Flow.

This is how we can fix the error, ‘the function ‘length’ expects its parameter to be an array or a string. the provided value is of type ‘object’..

You may also like:

  • Struggled with similar problem for 2 days with the “add” function. You made my day, as your solution directed me to the simple fix for my issue. Thanks so much!

  • >