How to append new string into items of a List variable

Hey @Komom

  • Use an Assign activity to define your ListA and ListB if not already.
  • Use a For Each loop with index (For Each item in ListB with index i)
  • Inside the loop, do:
    ListA(i).Add(item)
    cheers