Summary
When configuring a pop-up to display the price of a feature, the currency symbol is not displayed as the field data type is numerical. The image below shows the Prices field without a dollar sign preceding the value.

This article provides a few workflows to display a currency symbol in pop-ups for ArcGIS Online Map Viewer. In this example, the dollar sign is added to the Prices field.
Procedure
Add a new string field to the table
- In ArcGIS Online, add a field with a string data type, and calculate values for the field.
- In the Expression dialog box, insert the following Arcade expression with the desired currency symbol. In this example, the dollar sign ($) is used.
Text($feature., '$ ###,###,###.00')
- Optionally, delete the original field without the currency symbol in the values. Refer to ArcGIS Online: Delete a field for further instructions.
- Configure the pop-up to display the new field. Refer to ArcGIS Online: Configure pop-ups for further instructions.
Use a custom Arcade expression
Note:
This workflow is only applicable to fields with a numerical data type.
- In Map Viewer, click Layers on the Contents (dark) toolbar, and select the layer with the pop-up for editing. In this example, the Test2 layer is selected.
- Click Pop-ups
on the Settings (light) toolbar, and click Options > Attribute expressions.
- Click + Add expression to open the Arcade expression editor window.
- In the editor window, specify a name for the new expression. In this example, the name of the expression is Prices $.
- In the Expression dialog box, insert the following Arcade expression with the desired currency symbol. In this example, the dollar sign ($) is used.
Text($feature.<field name>, '$ ###,###,###.00')
- Click Run to view a preview of the expression result.
- If the required result is achieved, click Done.
- Click Back above the Arcade expression in the Attribute expressions pane.
- Click Fields list to expand the list of fields displayed in the pop-ups and click Select fields.
- Check the expression field under the Expressions section and click Done.
The image below shows the dollar sign displayed in the Prices $ field pop-up.