Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
SOLVED

To aggregate the sum in Campaign export template from AJO

Avatar

Level 4

chrisyan_0-1740794335266.png

how can I aggregate cheque_amount1 + cheque_amount2 = Totalvalue via export template of the DM Campaign?

 

Thank you.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@chrisyan I don't think you will be able to assign the value and use that as input to another label in the DM export. Instead, try using a personalization function along these lines, or else if the cheque_amount data is in the profile level you can do personalization functions to calculate the data field,

{% let cheque_amount1 = 10 %}
{% let cheque_amount2 = 20 %}
{% let Totalvalue = cheque_amount1 + cheque_amount2 %}
{{Totalvalue}}

Thanks, Sathees

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

@chrisyan I don't think you will be able to assign the value and use that as input to another label in the DM export. Instead, try using a personalization function along these lines, or else if the cheque_amount data is in the profile level you can do personalization functions to calculate the data field,

{% let cheque_amount1 = 10 %}
{% let cheque_amount2 = 20 %}
{% let Totalvalue = cheque_amount1 + cheque_amount2 %}
{{Totalvalue}}

Thanks, Sathees