I have a footer-field with:
{Sum((Items.Total+Items.Discount))}
And I've set this to number-format with 2 digits.
It correctly prints: "10.70"
If I change it to:
{Sum((Items.Total+Items.Discount) / 1.07m)}
I would expect to get "10.00" but it only prints "10".
Formatting issue
Formatting issue
Hello.
Thank you.
Please, try to use this expression:Tobias wrote:I have a footer-field with:
{Sum((Items.Total+Items.Discount))}
And I've set this to number-format with 2 digits.
It correctly prints: "10.70"
If I change it to:
{Sum((Items.Total+Items.Discount) / 1.07m)}
I would expect to get "10.00" but it only prints "10".
Code: Select all
{Sum((Items.Total+Items.Discount) / 1.07f)}