Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Repeatable row fill color change on exit

Avatar

Level 2

Hello,

How do I write this so the fill color change applies to all rows that are repeated? Right now, it is only changing the first row.

if(Subform1.Amend.rawValue=="1" && this.rawValue!=null)

{

HiddenMultiSub.Subform8.B2.fillcolor = "255, 255, 255";

}

Thank you!

1 Reply

Avatar

Level 2

Found the resolution.

Changed to Form Calc

if(Subform1.Amend.rawValue eq 1 & this.rawValue ne null)

{

HiddenMultiSub.Subform8[*].B2.fillColor = "255, 255, 255";

}