Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Use a calculated table footer field elsewhere in the table

Avatar

Level 4

I have a expandable table where column totals are performed in a table footer. The field name is

 

        

     form1.ICE_Page1.CostEstimate.Table1.FooterRow.Subtotal_Labor

I need to use this value elsewhere in a subsequent section of this table (I just need to repeat the value in another cell). I used this on the exit event of the cell where I want the value to be repeated.

     Table1.FooterRow.Subtotal_Labor.rawValue 

=  this.rawValue;

It is not working. I would appreciate any remedy.

1 Accepted Solution

Avatar

Correct answer by
Level 10

The simplest way to do it is using FormCalc with the Calculate Event of the second field

You just need to enter :

Table1.FooterRow.Subtotal_Labor.rawValue

in the event

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

The simplest way to do it is using FormCalc with the Calculate Event of the second field

You just need to enter :

Table1.FooterRow.Subtotal_Labor.rawValue

in the event

Avatar

Level 4

Sometimes it is difficult to see the answer that is usually right in front of your face.

That did it; thank you.