I'm sure this is a simple thing to do but I'm not sure how to do it. How can I format one of the keys from the select function to output a currency number format? I've attached my flow and output as reference.
How can I format the Amount column so numbers would instead look like $105,087.69?
Solved! Go to Solution.
You can use the formatNumber() function.
Example: formatNumber(17.35, 'C2') returns $17.35.
In the Select action add the formatNumber as an expressions:
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
You can use the formatNumber() function.
Example: formatNumber(17.35, 'C2') returns $17.35.
In the Select action add the formatNumber as an expressions:
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
Worked great, thanks!