Quote:
Originally Posted by chaley
The template you used appends one column to another. What you want is more complicated, appending each value in column 2 (#characters) to a processed version of column 1 (#fandom}.
This template does what I think you are asking for. The first code line generates the new prefix from the fandom column by replacing all commas-followed-by-spaces with a period. The second code line adds that prefix to each item in the #character list, separated by a period.
|
I had the feeling that it would be more complicated, but I wasn't sure how to do it. I had looked at 'list' functions, but I couldn't figure which one to use or how to use it.
Your code worked. Thank you.