I have been asked in the last few weeks to help colleagues with replicating an Alteryx workflow that heavily used multi-row functionality, in particular the embedded grouping feature. I am trying to find a way to do this that is streamlined. Is there a metanode or custom component that does this that is not immediately available, OOTB?
This is a huge pain point for us and any guidance would be helpful. Been going down a rabbit hole of lags and porting the if, then-else logic into a Java snippet or Column Expressions node and Group Loops. I can eventually get something, but it is a brute force exercise.
$[“column_name”, offset] to reference previous or next rows relative to the current one. The offset is a static number. Negative offsets point to previous rows, positive offsets to rows next the current row. Replacing a column will only take effect after evaluating the expression for the whole table. This means that the expression only uses the original data from that column.
Thanks, this seems to work. However, if my data, there are values that are generated that are “infinity” for 0 divided by 0 or 0 divided by a negative number. Is there a way to manage that?