we have a calculated column in our SharePoint List with the below formula:
=TEXT([Contract Value (£)]/(DATEDIF([Contract Start Date],[Contract End Date],"M")/12),"#,###.00")
here are the settings:

In the list, it looks correct:

Now in our Flow, we need to update a field in the list with a concatenated string using the below formula:
concat('The Annual Contract Value (£',triggerBody()?['AnnualContractValue'],') falls below the £50,000 annual threshold, so Finance & Procurement Approval was skipped')this is then used in an email, but the value returned by the concatenated formula is incorrect:

what we want to see is £1621.62
How can we format that currency number returned by the calculated field to 2 decimal places?