I have data in excel in following format
Resource 2/2/2013 2/3/2013 2/4/2013
Name1 9 9 9
Name2 9 9 9
Name3 9 9 9
I have to convert the above data into something like this:
Resource Date Hours
Name1 2/2/2013 9
Name1 2/3/2013 9
Name1 2/4/2013 9
Name2 2/2/2013 9
Name2 2/3/2013 9
Name2 2/4/2013 9
Name3 2/2/2013 9
Name3 2/3/2013 9
Name3 2/4/2013 9
Is there any function in excel
that can do that. I could find only the row to columns
function that didn't help me as it will just transpose
the data and not create multiple entries like above.
What could be the best way to do this even through VBA
.