Hi all,
Trying to replicate this pyhton logic in alteryx, however I am having trouble understanding what it does.
df1['ColA'] = [ID[Length:] for ID, Length in zip(df1.ID, df1.Length)]
Length column counts the length of each string in another (unshown) column:
ID sample records:
corresponding ColA:
To me it looks like take the last digits based on the length of the "Length" column.
Does anyone know how I can replicate this functionality in a alteryx formula?