Hi,
I have data that looks like this:
6/1/2009 Jack 301
6/1/2009 Jane 503
6/1/2009 Jilly 458
7/1/2009 Jack 429
7/1/2009 Jilly 562
For about 100 rows. I need it to look like this, so I can compare the numerical data by month for each name.
Date 6/1/09 7/1/09
Jack 301 429
Jane 503
Jilly 458 562
Here's what I have so far...
Now obviously this doesn't work, not least because I don't know how to use "i" to iterate by column. Also, clearly, the above was just a trial to see if I could get it to work with Jack -- the final code would have to include Jilly and Jane's data getting moved as well. Any ideas?![]()
Please Login or Register to view this content.
*Edit: I realized this might not be clear: There are certain months for which I don't have numerical data for Jack, and certain months for which I don't have numerical data for Jane, etc. I need the code to recognize this, and place numerical data from further months further down the line, leaving the cell for where I don't have data blank. i.e. There is no row of data for Jane for 7/1/2009, but there is for 6/1 and 8/1. I need the code to just leave the cell in the new format corresponding to Jane 7/1/2009 blank.
Bookmarks