I am getting this error when trying to use format number (for a phone number): Unable to process template language expressions for action 'Format_number' at line '0' and column '0': 'The template language function 'formatNumber' expects its first parameter to be an integer or a decimal number. The provided value is of type 'String'. Please see https://aka.ms/logicexpressions#FormatNumber for usage details.'.
Solved! Go to Solution.
@rbutgins You should just be able to convert the string to an integer within the number field. Instead of choosing Column3 as the input for Number, use int(items('Apply_to_each')['Column3']) as an expression to convert that item to an int.
@rbutgins You should just be able to convert the string to an integer within the number field. Instead of choosing Column3 as the input for Number, use int(items('Apply_to_each')['Column3']) as an expression to convert that item to an int.
That did the trick! Thank you!