Seperating same values into columns

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite
1












I would like to take a list like this:



original table



and convert it to this, where the same values line up by column for each row record:



end result










share|improve this question









New contributor




Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    2
    down vote

    favorite
    1












    I would like to take a list like this:



    original table



    and convert it to this, where the same values line up by column for each row record:



    end result










    share|improve this question









    New contributor




    Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      I would like to take a list like this:



      original table



      and convert it to this, where the same values line up by column for each row record:



      end result










      share|improve this question









      New contributor




      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I would like to take a list like this:



      original table



      and convert it to this, where the same values line up by column for each row record:



      end result







      microsoft-excel






      share|improve this question









      New contributor




      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 3 hours ago









      Blackwood

      2,57151227




      2,57151227






      New contributor




      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 3 hours ago









      Jason H.

      111




      111




      New contributor




      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Jason H. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          6
          down vote













          One way is to just populate the grid with a SEARCH formula.



          Spreadsheet view



          I have added column headers which are used in the formula to determine the matches.



          =IFERROR(IF(SEARCH(C$1,$B2)>0,C$1,""),"")



          Put this formula into cell C3 and drag it over and down.



          SEARCH will return the location, counting from the left, of the contents of C$1 within the string in cell $B2. SEARCH is not case-sensitive, so if you want a to be not equivalent to A, then use FIND instead.



          Both SEARCH and FIND will return errors if not found, so the IFERROR captures that and returns "" instead.






          share|improve this answer






















          • Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
            – LPChip
            2 hours ago

















          up vote
          -1
          down vote













          Excel has a feature for this, normally designed to make a CSV that was imported improperly, show properly.



          You select the cells in column B, or Column B entirely, then choose Data, Text to Columns. A wizard will pop up to guide you through the process of converting that one column into multiple ones. You choose , as separator (should be set by default) and you can see what the result will become in its preview below.



          Hit Next for more options about the conversion.



          Hit Finish to start the conversion.






          share|improve this answer
















          • 1




            I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
            – Tom Brunberg
            1 hour ago










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "3"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Jason H. is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1357975%2fseperating-same-values-into-columns%23new-answer', 'question_page');

          );

          Post as a guest






























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          6
          down vote













          One way is to just populate the grid with a SEARCH formula.



          Spreadsheet view



          I have added column headers which are used in the formula to determine the matches.



          =IFERROR(IF(SEARCH(C$1,$B2)>0,C$1,""),"")



          Put this formula into cell C3 and drag it over and down.



          SEARCH will return the location, counting from the left, of the contents of C$1 within the string in cell $B2. SEARCH is not case-sensitive, so if you want a to be not equivalent to A, then use FIND instead.



          Both SEARCH and FIND will return errors if not found, so the IFERROR captures that and returns "" instead.






          share|improve this answer






















          • Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
            – LPChip
            2 hours ago














          up vote
          6
          down vote













          One way is to just populate the grid with a SEARCH formula.



          Spreadsheet view



          I have added column headers which are used in the formula to determine the matches.



          =IFERROR(IF(SEARCH(C$1,$B2)>0,C$1,""),"")



          Put this formula into cell C3 and drag it over and down.



          SEARCH will return the location, counting from the left, of the contents of C$1 within the string in cell $B2. SEARCH is not case-sensitive, so if you want a to be not equivalent to A, then use FIND instead.



          Both SEARCH and FIND will return errors if not found, so the IFERROR captures that and returns "" instead.






          share|improve this answer






















          • Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
            – LPChip
            2 hours ago












          up vote
          6
          down vote










          up vote
          6
          down vote









          One way is to just populate the grid with a SEARCH formula.



          Spreadsheet view



          I have added column headers which are used in the formula to determine the matches.



          =IFERROR(IF(SEARCH(C$1,$B2)>0,C$1,""),"")



          Put this formula into cell C3 and drag it over and down.



          SEARCH will return the location, counting from the left, of the contents of C$1 within the string in cell $B2. SEARCH is not case-sensitive, so if you want a to be not equivalent to A, then use FIND instead.



          Both SEARCH and FIND will return errors if not found, so the IFERROR captures that and returns "" instead.






          share|improve this answer














          One way is to just populate the grid with a SEARCH formula.



          Spreadsheet view



          I have added column headers which are used in the formula to determine the matches.



          =IFERROR(IF(SEARCH(C$1,$B2)>0,C$1,""),"")



          Put this formula into cell C3 and drag it over and down.



          SEARCH will return the location, counting from the left, of the contents of C$1 within the string in cell $B2. SEARCH is not case-sensitive, so if you want a to be not equivalent to A, then use FIND instead.



          Both SEARCH and FIND will return errors if not found, so the IFERROR captures that and returns "" instead.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 3 hours ago

























          answered 3 hours ago









          Rey Juna

          4357




          4357











          • Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
            – LPChip
            2 hours ago
















          • Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
            – LPChip
            2 hours ago















          Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
          – LPChip
          2 hours ago




          Although this works, its a very labor intensive solution to a problem that Microsoft Excel has a build in feature for of solving.
          – LPChip
          2 hours ago












          up vote
          -1
          down vote













          Excel has a feature for this, normally designed to make a CSV that was imported improperly, show properly.



          You select the cells in column B, or Column B entirely, then choose Data, Text to Columns. A wizard will pop up to guide you through the process of converting that one column into multiple ones. You choose , as separator (should be set by default) and you can see what the result will become in its preview below.



          Hit Next for more options about the conversion.



          Hit Finish to start the conversion.






          share|improve this answer
















          • 1




            I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
            – Tom Brunberg
            1 hour ago














          up vote
          -1
          down vote













          Excel has a feature for this, normally designed to make a CSV that was imported improperly, show properly.



          You select the cells in column B, or Column B entirely, then choose Data, Text to Columns. A wizard will pop up to guide you through the process of converting that one column into multiple ones. You choose , as separator (should be set by default) and you can see what the result will become in its preview below.



          Hit Next for more options about the conversion.



          Hit Finish to start the conversion.






          share|improve this answer
















          • 1




            I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
            – Tom Brunberg
            1 hour ago












          up vote
          -1
          down vote










          up vote
          -1
          down vote









          Excel has a feature for this, normally designed to make a CSV that was imported improperly, show properly.



          You select the cells in column B, or Column B entirely, then choose Data, Text to Columns. A wizard will pop up to guide you through the process of converting that one column into multiple ones. You choose , as separator (should be set by default) and you can see what the result will become in its preview below.



          Hit Next for more options about the conversion.



          Hit Finish to start the conversion.






          share|improve this answer












          Excel has a feature for this, normally designed to make a CSV that was imported improperly, show properly.



          You select the cells in column B, or Column B entirely, then choose Data, Text to Columns. A wizard will pop up to guide you through the process of converting that one column into multiple ones. You choose , as separator (should be set by default) and you can see what the result will become in its preview below.



          Hit Next for more options about the conversion.



          Hit Finish to start the conversion.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 hours ago









          LPChip

          33.4k44479




          33.4k44479







          • 1




            I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
            – Tom Brunberg
            1 hour ago












          • 1




            I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
            – Tom Brunberg
            1 hour ago







          1




          1




          I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
          – Tom Brunberg
          1 hour ago




          I don't think this will work as OP requested. Take the two first cells in column B (content A,B,C and B,E) f.ex. A in 1st will line up with B in 2nd, B in 1st will line up with E in 2nd and so on. Not at all as what was asked for.
          – Tom Brunberg
          1 hour ago










          Jason H. is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          Jason H. is a new contributor. Be nice, and check out our Code of Conduct.












          Jason H. is a new contributor. Be nice, and check out our Code of Conduct.











          Jason H. is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1357975%2fseperating-same-values-into-columns%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          Long meetings (6-7 hours a day): Being “babysat” by supervisor

          Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

          Confectionery