Hi I have data being returned and I put it in a matrix. I have my rows set and my columns set. I only have one column entitled "GTA" and a few rows. My data is coming out like this for some reason.
GTA GTA GTA
Answer
========================
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3
Whenever the value is different it dynamically makes a new column for it and does the above.. why? Is there away I can get it looking like this:
GTA
Answer
==============
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3