Hi,
I have a array of values like below one,
M0524 | R0018 |
M0108 | R0018 |
M0536 | R0018 |
M0104 | R0018 |
M0106 | R0018 |
I need to split this into two array
Array 1
M0524 | R0018 |
M0108 | R0018 |
M0536 | R0018 |
Array 2
M0104 | R0018 |
M0106 | R0018 |
This will be dynamic in each run so I have to pass start and end index in the expression. Whether someone have answer for this ?
Please someone suggest me with any answer
This is little bit critical for me so If someone have a solution please share
Try a compose action with :
You should be able to convert the array to a string using the method described here:
How to convert array to a string in Power Automate (tomriha.com)