I have a Sharepoint list that has five numerical columns and then a final calculated column that totals the previous five. That column is set up using format 'number' and with the calculation:
=Round((Monday+Tuesday+Wednesday+Thursday+Friday),0)
However, when I try to pass this column through into Flow, I am getting the number with multiple decimal points after it. I was specifically trying to avoid this by using the 'round' fuction, but it doesn't seem to make any difference.
Any other way to pass this column's value through without the decimal points attached?
Solved! Go to Solution.
Hi @JamesSnaps,
I have made a test on my side and the issue is confirmed on my side.
Please add an expression int() to calculated formate the column's value to int type.
I have made a test to create a calculated column named "Calculate" in the sharepoint list, and you could refer to screenshot below to create the flow:
The expression in the Compose as below:
int(items('Apply_to_each')?['Calculate'])
The flow would run successfully as below:
Best regards,
Alice
Hi @JamesSnaps,
I have made a test on my side and the issue is confirmed on my side.
Please add an expression int() to calculated formate the column's value to int type.
I have made a test to create a calculated column named "Calculate" in the sharepoint list, and you could refer to screenshot below to create the flow:
The expression in the Compose as below:
int(items('Apply_to_each')?['Calculate'])
The flow would run successfully as below:
Best regards,
Alice
Works perfectly, thanks Alice.
Error Display
Even after writing the mentioned solution, i am getting an error display.... Can you help to overcome the error display???
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
Watch Nick Doelman's session from the 2020 Power Platform Community Conference on demand!
User | Count |
---|---|
48 | |
32 | |
32 | |
31 | |
29 |