Entering edit mode
                    10.5 years ago
        MAPK
        
    
        ★
    
    2.1k
    Hi Guys,
I have a quick question:
I have list of characters in two different objects
object1
 "1.TY"   "2.TY"   "4.TY"   "5.TY"
object2
"1.MN"   "2.MN"   "4.MN"   "5.MN"
I want to merge them alternating one after other, as shown below.
Result
"1.TY"  "1.MN"  "2.TY" "2.MN"  "4.TY" "4.MN"  "5.TY"  "5.MN"
Thank you for your help.
Thank you, got what I need.