Creating Columns
Okay, this probably sounds like a really easy question, but I'm having a hard time with it. So I have this data that is formatted like: (number)|(name)|(number)|(name)|(number).... etc. Well I have a loop that looks at the string, parses the information by the delimiter ('|') and then takes every other entry in that new list (all the "names") and puts only those in the new list. That new list is t...
