Changes for page Sum
Last modified by Abdelali EL MAJDOUBI on 2023/08/03 13:29
<
>
edited by Abdelali EL MAJDOUBI
on 2023/08/03 13:00
on 2023/08/03 13:00
edited by Abdelali EL MAJDOUBI
on 2023/08/02 12:52
on 2023/08/02 12:52
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -4,21 +4,16 @@ 4 4 5 5 == Syntax : == 6 6 7 -* **${ixf:sum(xpathExp1, xpathExp2)}**calculates the sum of the results obtained from evaluating "xpathExp1" and "xpathExp2".8 -* **${ixf:sum(xpathExp,"10")}**the result will be the sum of the result obtained from evaluating "xpathExp" and 10.9 -* **${ixf:sum("10","12","100")}**the result will be 122, which is the sum of the individual results of "10", "12", and "100".7 +* ${ixf:sum(xpathExp1, xpathExp2)} calculates the sum of the results obtained from evaluating "xpathExp1" and "xpathExp2". 8 +* ${ixf:sum(xpathExp,"10")} the result will be the sum of the result obtained from evaluating "xpathExp" and 10. 9 +* ${ixf:sum("10","12","100")} the result will be 122, which is the sum of the individual results of "10", "12", and "100". 10 10 11 11 Ensure that numerical values are between double quotes : ${ixf:sum("10","12","100")}, 12 12 13 13 while xpath expressions should remain without any quote enclosures. 14 14 15 - 16 -== Example : == 17 - 18 -* ${ixf:sum(Documents/Order/DeliveryAddress/OrderLine/Price,"10"} 19 - 20 20 == Note: == 21 21 22 - Numerical valuescan be alsoenclosedwithinsingle quotes : ${ixf:sum('10','12','100')}mixsingleand doublequotes,like this: ${ixf:sum("10",'12','100')}.17 +You can wrap numerical values also by single quotes : ${ixf:sum('10','12','100')} **OR** Mixing both quotes : ${ixf:sum("10",'12','100')}, 23 23 24 24