Hi everyone,
I’m trying to sum the values from a table column using XPath in a DocuSign CLM document.
I already know that this works: <# <Content Select="(sum(//Valor_Por_Data))" /> #>
However, the sum result only works if the numbers are in the format: 00000.00
(no thousands separator, and with a dot .
instead of a comma ,
as the decimal separator).
The issue is that this is not our standard number format — we normally use a thousands separator and a comma for decimals (e.g., 12.345,67
).
Is there a way to perform the sum directly with our local number format, or do I need to convert the values before summing them?
Thanks in advance!