- ๐ฉ๐ชGermany thomas.wardin
thomas.wardin โ made their first commit to this issueโs fork.
- Issue was unassigned.
- Status changed to Active
over 1 year ago 9:15am 24 August 2023 - ๐ฉ๐ชGermany thomas.wardin
I am combining two webform submission fields into a text field like so:
{% if webform_submission_value_1 is empty %} {{ webform_submission_value_4 }} {% else %} {{ webform_submission_value_1 }} {% endif %}
In the webform, both fields are defined with an input mask like so:
'alias': 'currency', 'prefix': '', 'groupSeparator': '.', 'radixPoint': ',', 'digits': 2
I could not find a way to apply number_format to the views text field (which apparently isn't necessary), but the aggregation does not respect the format defined elsewhere;
ID Betrag Comment 50 1.200,00 Single Row 51 1.800,00 Single Row 3000 Aggregate Row
How to fix?
Environment: Drupal 9.5.9, PHP 8.1.18, Views Aggregator Plus 2.0.2