I am looking for some help please. I am trying to combine multiple columns in a loop but only in specific combinations. For example, I need to calculate the sum of 3 columns, but only taking one column from each ‘set’ (named as Column_1, Column_2, Column_3). So Column_1a + Column_2a + Column_3a, then next calculate Column_1a + Column_2b + Column_3a, then Column_1a + Column_2c + Column_3a for every combination from the following:
Column_1a Column_1b Column_2a Column_2b Column_2c Column_3a Column_3b Column_3c Column_3d Column_3e.
I have copied what i expect to get below (summed values in bold) and have also have attached an Excel file with the same data.
First part is to create all combinations using row filtering and cross joining. Then I used String Manipulation to create expressions for Math Formula which were used in a loop. Workflow is attached.