Going through a List

Is it possible in app sheets to go through a column of lists and add something to each item?

EX:

Test ID : TS_Security
List: {Item 1, Item 2, Item 3}

I want the list to be: {TS_Security:Item 1, TS_Security:Item 2, TS_Security:Item 3}

Solved Solved
0 2 168
1 ACCEPTED SOLUTION

Something like this?

SPLIT(
  "TS_SECURITY:"
  &
  SUBSTITUTE(
    CONCATENATE( old-list ) ,
    "," ,
    ", TS_SECURITY:"
    ),
  ","
)

View solution in original post

2 REPLIES 2

Something like this?

SPLIT(
  "TS_SECURITY:"
  &
  SUBSTITUTE(
    CONCATENATE( old-list ) ,
    "," ,
    ", TS_SECURITY:"
    ),
  ","
)

Thatโ€™s exactly what I needed, thank you so much for your help

Top Labels in this Space