Question

I need to display currency $45700 as $45,700 using HTML.Can anyone please help me here how do I do it.

Was it helpful?

Solution

To do this in Flow, insert an action that converts your number to the format you want.
Then you use the output of this action in your email body. It will be listed in the dynamic content under "Format number".

enter image description here

OTHER TIPS

We can use the below HTML code:

<!DOCTYPE html>
<html>
   <body>
      <p>
         Formatting 150 as US dollars (US$):
      </p>
      <script>
         var formatter = new Intl.NumberFormat('en-US', {
            style: 'currency',
            currency: 'USD',
            minimumFractionDigits: 2,
         });
         // for 150$
         document.write(formatter.format(150));
      </script>
   </body>
</html>

Source:

How can I format numbers as dollars currency string in JavaScript?

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top