Hello Community,
I am unable to implement one scenario in Alteryx, Please provide me solution for below scenario:
We have table having field RATE, using that need to implement new field called FACTOR. In which need to required add previous rows and multiply with RATE.
I tried to implement in Alteryx using Multi-row formula like:
Step1: Add Record ID.
Step2: Multi-Row Formula-
IF [RecordID]=1
THEN ROUND(([RATE]*100),.01)
ELSE ROUND(([RATE]*(100-[Row-1:FACTOR])),.01)
ENDIF
But I am not getting the same results required.
PFA data and field calculation (FACTOR) in excel that needs to implement in Alteryx.