I am constructing a batch macro to run a set of operations in loop for a control parameter.
sample input A
| Item | qts | place | id |
| A | 23 | MMX | t6787 |
| A | 11 | KKI | t6789 |
| A | 88 | IUJ | t6791 |
| A | 52 | YTT | t6793 |
sample input B
My macro basically should take these 2 inputs and runs a python code with "flag_rate" as a control parameter for each iteration and gives the final output. Since there are 3 values under "flag_rate" the macro should run 3 times and collate the results. However i do not want my input A to be changed.
How can i pass the input A without providing a groupby field?