Power Automate 表达式乘法
Power Automate Expression for Multiply
问题: 无法在 Power Automate 中相乘。
错误信息:
Unable to process template language expressions in action 'Sales_with_Delta' inputs at line '0' and column '0': 'The template language function 'int' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.
乘法表达式:
mul(int(outputs('Compose')),float(variables('delta')))
流量配置
问题:
- 你能帮忙做一下 mul 表达式吗?
- 我想在“
Sales with Delta
”变量中将“Sales
”与“delta
”相乘
请注意
- 我无法更改声明为“
Compose
”或“Object
”的变量
在对象中引用 属性 时需要具体说明,试试这个...
mul(int(outputs('Compose')['Sales']),float(variables('delta')))
为我工作...
...您可能只需要处理您可能不想要的结果的 .00001 小数部分。
问题: 无法在 Power Automate 中相乘。
错误信息:
Unable to process template language expressions in action 'Sales_with_Delta' inputs at line '0' and column '0': 'The template language function 'int' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.
乘法表达式:
mul(int(outputs('Compose')),float(variables('delta')))
流量配置
问题:
- 你能帮忙做一下 mul 表达式吗?
- 我想在“
Sales with Delta
”变量中将“Sales
”与“delta
”相乘
请注意
- 我无法更改声明为“
Compose
”或“Object
”的变量
在对象中引用 属性 时需要具体说明,试试这个...
mul(int(outputs('Compose')['Sales']),float(variables('delta')))
为我工作...
...您可能只需要处理您可能不想要的结果的 .00001 小数部分。