I have a .csv file (and many more like it coming) which are not well organized. Here is a sample file
Number,A1Name,A1DoVote,A1Vote,A2Name,A2DoVote,A2Vote,A3Name,A3DoVote,A3Vote,Solution
1,One,true,0,Two,false,50,Three,true,100,50.0
2,One,true,0,Two,false,50,Three,true,100,50.0
3,Two,true,100,One,true,0,Three,false,100,50.0
4,Two,true,100,One,true,0,Three,false,100,50.0
5,Three,true,100,One,true,0,Two,false,50,50.0
6,Three,false,100,One,true,0,Two,true,100,50.0
7,Three,true,100,One,true,0,Two,false,50,50.0
8,Three,false,100,One,true,0,Two,true,100,50.0
9,Two,false,50,Three,true,100,One,true,0,50.0
10,Two,true,100,Three,false,100,One,true,0,50.0
11,Three,true,100,Two,false,50,One,true,0,50.0
12,Three,false,100,Two,true,100,One,true,0,50.0
I imported this in Excel but the problem is that I need the data to be organized by the names so the "One", "Two", "Three" and not be the number of rows. Is there a good way to get the data to always show "One" first, along with the two columns adjacent to it on the right, then "Two", and then "Three" (again with the two adjacent columns? The rows are sets of data so they need to stay that way, I just want the columns to be switched around.
If anything is unclear please comment and I will fix it as fast as possible.
This is what the the above .csv code looks like in Excel
and here is what I would like to have:
As you can see the "One", "Two", and "Three" are all in the same columns and the two right-hand values still adjacent to them. (Wahr is true and falsch is false)