Hi,
I'm trying to hide a row inside a dynamic table if data in cell2 has "Old Statement".
If cell2 has the name "Old Statement". Hide that whole row.
My code only hides the 1st row.
if (statementForm.sfStatementForm.sfStatementSummary.sfStatementEntries.tblstatementEntry.rwStatementEntry.Cell2.rawValue == "Old Statement")
{
statementForm.sfStatementForm.sfStatementSummary.sfStatementEntries.tblstatementEntry.rwStatementEntry.presence = "hidden";
}
else
{
statementForm.sfStatementForm.sfStatementSummary.sfStatementEntries.tblstatementEntry.rwStatementEntry.presence = "visible";
}

I'm new to Livecycle designer and would really appreciate the help.
Thank you