Format dynamic content to output currency

How can I format a dynamic content to output in a currency format with commas: 100,000,000?

Here is the code I am using to generate the field on the archive template:

{{dc:looper:field key=“estimated_value”}}

Currently displays: 100000
Formatted display: 100,000

There is a Twig filter for this called number_format as well as some other filters you might find useful. In your example it would look like this. Let us know if that helps and have a great day.

{{ looper.item.estimated_value | number_format }}.