Hi
I am trying to format a string to currency in a "Create HTML Table", using the following flow:
Where
| Value | float('2021.12') -> just for testing |
| Value_2 | concat(string(item()?['Amount']),'€') |

I got the following result:

I want to have the 'Value_2' format like the following 961 600,11€, when using the expression:
formatnumber(float(item()?['Amount']), 'C', 'pt-PT'), I get the following error:
"The execution of template action 'Create_HTML_table' failed. The column values could not be evaluated: 'The template language function 'float' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'."
Tried several alternatives and type conversion but the error is allways the same.
Is it possible to convert a string to currency inside action 'Create HTML Table' ?
Thanks for your support