---
title: "Feature: #57331 - Support dash in CurrencyViewHelper"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-57331"
source: "Changelog/9.4/Feature-57331-SupportMdashInCurrencyViewHelper.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #57331 - Support dash in CurrencyViewHelper

See [forge#57331](https://forge.typo3.org/issues/57331)

## Description

The `useDash` option has been added to the CurrencyViewHelper.

## Impact

If the option `useDash` is set and a value without decimals (see example) is given, the decimal place is rendered as a dash.

Example:

```html
<!-- Renders "54321.-" -->
<f:format.currency useDash="true">54321.00</f:format.currency>
```
