Merge a string into a branch

I do try to merge a piece of information “Panel Name” into a list and I need to create a new list with two indeces. 0 to be “Panel Name” and 1 to be the actual information from the index 0.

So, from {7} with index 0 as “1272 x 548”, I do need to have: {7} with Index 0 as “Panel name” and the index 1 as “1272 x 548”.

The result needs to looks like:
. ===========
{7}
0 Panel Name
1 1272 x 548
. ===========
{8}
0 Panel Name
1 1252 x 121
. ===========

Merge_two_lists

try Insert Item

1 Like

Thank you. Working. Omitted that one.

1 Like