Not totally sure what you exactly need. But you can always implement an action that will iterate however you need, explicitly. Like here:
E.g. if you need to make all combinations of 2 fruit, here’s the steps I’d take:
- In your fruits table, make a column where you look up the remaining fruit to match this row with (e.g.
thisTable.Filter(CurrentValue.RowID > thisRow.RowID)
, plus some custom conditional if you only need to match with some fruits and not all) - Implement the loop like in the link above. For each row store current row into a temp cell, and for each remaining fruit put a row with temp cell value and CurrentValue.