I Have a column named A with values like 0,1,2,3,4 and I have a column named B with values like AAAAA,BBBBB. So much desired output is the the 1st string in column B should get 1st string from Column A and 2nd string in Column B should get 2nd string from Column A.
Can you please help me on this.
| Input | | Output | |
| A | B | | A | B | Result |
| 0,1,2,3,4,5,A,B,C,D,Z | AAAAA,BBBBB | | 0,1,2,3,4,5,A,B,C,D,Z | AAAAA | 0 |
| | | | 0,1,2,3,4,5,A,B,C,D,Z | BBBBB | 1 |