Hello!I build this form (a timesheet) where I have a dynamic table with
variable number of rows (I'm adding instances with a click on a
button).All rows contain a totalLinhaRelatorio field, this is a time
field, and I need all such fields to be added to get a final total.So I
tried these two script lines (FormCalc):var finalTotal =
sum(Time2Num(parteInferior.atividades.tabelaAtividades.linhaAtividade[*].totalLinhaRelatorio[*],"HH:MM"))$.formattedValue
= Num2Time(finalTotal, "HH:MM")It doesn´t wo...