Hello,
How can i insert 2 or 4 blank rows after specific line(Total)
Output
Expected Output
Hi @kauser ,
There might be better ways, but here is one way.
You can change the number of rows by changing the number '2' in Formula tool below.
IF [Title] = "TOTAL" THEN 1 + 2ELSE 1ENDIF
Workflow
Thanks for your suggestion but there are some problem. if you add value on $$ column suck if you have balance from Total row is 6 then this 6 amount will repeact with null rows. then how can i remove balances from null rows
Hi, @kauser
FYI.
it doesn't solve the issue please try with input
IIF([RowCount] != 1,IIF(ToString([_CurrentField_]) = 'Total', 'NULL', Null()), [_CurrentField_])
In the same way as [Title] column, you can nullify [$$] column in Formula tool.
Title = IF [RowCount] != 1 THEN Null() ELSE [Title] ENDIF
$$ = IF [RowCount] != 1 THEN Null() ELSE [$$] ENDIF // Added
Input