Momo
1
Hello guys,
Trying to sum up two column that I got from 2 summrising T.E, any helps please?
in this screanshut, im trying to sum up column 1 and column 2 and put it in column 3, any possibility to use Var T.E? thanks.
Rental_Quote v7.docx (226.3 KB)
@ALOT
SemirT
(Semir Teskeredzic)
2
Hi @Momo ,
Since you are using regular Summary tagging elements, you can simply add them together along with the format() function in Field tagging element:
format(sum(SalesQuotationLines/@LineAmount) + sum(SalesQuotationTaxLines/@ActualTaxAmount), ‘n2’)
format() function is here to format the output as ‘n2’.
1 Like