I need to convert some data and am not real good with Excel so I'm hoping for some help. I've got some reports that output the data with each record as an individual table:
[pre]
[/pre]
Some fields (field 5 & 8 in my examples) might have multiple values that I would like to have comma separated.
I have more than 20 of these reports and each report has over 100 records so I would like to have a solution that I can reuse and just apply to each report. Each report would remain separate, I just want to convert each report so it becomes a single table that is much easier to sort and read.
I'm hoping somebody can help me out here.
[pre]
Code:
Col1 Col2
Field 1 Value1a
Field 2 Value2a
Field 3 Value3a
Field 4 Value4a
Field 5 Value5a1
Value5a2
Field 6 value6a
Field 7 value7a
Field 8 value8a1
value8a2
value8a3
Field 1: Value1b
Field 2 Value2b
Field 3 Value3b
Field 4 Value4b
Field 5 Value5b1
Value5b2
Value5b3
Field 6 Value6b
Field 7 Value7b
Field 8 Value8b1
I need to get the data into a single table where each field is a column (field 1 through field 13) and each record is a row:
Field 1 Field 2 Field 3 Field 4 Field 5 Field 6 Field 7 Field 8
Value1a Value2a Value3a Value4a Value5a1, Value5a2 value6a value7a value8a1, value8a2
Value1b Value2b Value3b Value4b Value5b1 Value6b Value7b Value8b1, Value8b2, Value8b3
Some fields (field 5 & 8 in my examples) might have multiple values that I would like to have comma separated.
I have more than 20 of these reports and each report has over 100 records so I would like to have a solution that I can reuse and just apply to each report. Each report would remain separate, I just want to convert each report so it becomes a single table that is much easier to sort and read.
I'm hoping somebody can help me out here.