After I got column A and B, how can I using tool to get column C-H?
Hi @phoebe_90
Likewise please replicate the above by using + symbol to add.....
Formula tool settings:
Output column: 31-60days
IF [Over due days] >= 31 AND [Over due days] <=60THEN [Amount]ELSE null()ENDIF
Data type: V_String
Output column: 1-30days
IF [Over due days] >= 1 AND [Over due days] <=30THEN [Amount]ELSE null()ENDIF
Output column: >120days
IF [Over due days] >120THEN [Amount]ELSE null()ENDIF
Many thanks
Shanker V
@phoebe_90 I think we can as below, of course we can a bit more about the header using Dynamic Rename tool.
Please use Formula tool.
Output column: 0 days
IF [Over due days] = 0THEN [Amount]ELSE null()ENDIF