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???
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
Power Platform release plan for the 2021 release wave 1 describes all new features releasing from April through September 2021.
User | Count |
---|---|
86 | |
58 | |
41 | |
35 | |
32 |
User | Count |
---|---|
79 | |
67 | |
57 | |
49 | |
40 |