Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

How to aggregate the values and text in the table?

Avatar

Level 2

Hi,

How to aggregate the values and text in the table?. (Form calc or Js)

Thanks,  Jain

3 Replies

Avatar

Level 7

Are you wanting to concatenate the values into another object? It isnt quite clear, so here it is.

Concatenating is easier in JS, calculating in FormCalc.

1650487_pastedImage_0.png

The NumericField3 calculate event simply has:

1650488_pastedImage_1.png

Whenever either field is changed, it recalculates.

The concatenate button is this:

1650489_pastedImage_2.png

When clicked a new rawValue is entered in the text field which is made up of the other fields concatenated into one value.

1650490_pastedImage_3.png

Avatar

Level 2

Dear Minus zero,

Thanks for your reply. please find the below screenshot.

I expect below aggregation.

Capture.JPG

Avatar

Level 7

Hi JainSa,

If your rows are fixed you can simply add them up, but if you are dynamically adding rows, you can do this.

Assuming the first data entry row is repeating, in the total field at the bottom add this code.

form1.#subform[0].Table1.Row2.NumericField1::calculate - (FormCalc, client)

sum(Table1.Row1[*].NumericField1[*])

1658195_pastedImage_0.png

Whenever you create a new row ( i have repeated row1), a new instance will be created before the total row and the new totals will be displayed when the field is edited.

1658196_pastedImage_1.png