Good day beautiful people,
I have 3 fields:
Power Automate output field

MyFlowResponse.count - 1
And two calculation fields:

Round(TextCanvas12_3.Text * 0.0083 * 1.1, 2) & " EUR"
and

Round((40 + (TextCanvas12_3.Text * 0.00025) + (1 / 60) * (4 * 1.1)) / 60, 1) & " hours"
For both calculation fields I'm getting error that it cannot convert 'Text' to a number, but once I run the application, the errors disappear. They also appear in App Checker, but if I navigate to a screen where the labels are, the error from AC disappear as well.
I'm not sure where the errors comes from, all 3 labels are data type number. The text for 2 appears only because I added " hours" and "EUR", without that it is numeric.
How can I get rid of this error? I've tried to add Value() or Text() to the calculation labels but it changed nothing.