Create a 2 dimension Quickreport - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:30:35Zhttp://stackoverflow.com/feeds/question/373229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373229/create-a-2-dimension-quickreport0Create a 2 dimension Quickreport Christopher Chase2008-12-17T00:01:03Z2009-01-21T15:46:29Z
<p>I think im asking for the right type of report from Quickreport.</p>
<p>What we have is a simple table, </p>
<pre><code>gauge,site,value
</code></pre>
<p>Gauge and site are the keyfields, (there could be anynumber of Gauge-Site Pairs)
normally there is only at most, about 10 sites.</p>
<p>and we are looking to get a reports that looks like this</p>
<pre><code> site1 site2 site3
gauge1 34 4 45
gauge2 45 6 5
gauge4 34 4 45
</code></pre>
<p>Dose anyone know </p>
<ul>
<li>What type this type of report is normally called, (so google can be more help)</li>
<li>Is is possible to created this type of report using QuickReport<br />
if so, any ideas how?<br />
if not, any ideas on what could be used insted?</li>
</ul>
<p>Delphi7<br />
QuickReports 3.5<br />
NexusDB (dont think that matters too much)</p>
http://stackoverflow.com/questions/373229/create-a-2-dimension-quickreport/373443#3734433Answer by AIBreveleri for Create a 2 dimension Quickreport AIBreveleri2008-12-17T01:57:25Z2008-12-17T01:57:25Z<p>It's called a cross tabulation. Google for crosstab, crosstab report, crosstab object.</p>
<p>-Al.</p>
http://stackoverflow.com/questions/373229/create-a-2-dimension-quickreport/465809#4658090Answer by Kipow for Create a 2 dimension Quickreport Kipow2009-01-21T15:46:29Z2009-01-21T15:46:29Z<p>Maybe you can create a memtable (for example with memoryData of JVCL suite (free)) then print a normal report.</p>