hello all of you,<br />
<br />
concerning my old topic <a class='bbc_url' href='
http://www.birt-exchange.org/forum/designing-birt-reports/16044-using-crosstab-summary-field-without-function.html#post51201'>http://www.birt-exchange.org/forum/designing-birt-reports/16044-using-crosstab-summary-field-without-function.html#post51201</a> I've got a new issue. First, again lets have a look at the table structure:<br />
<br />
table 'pilot'<br />
<br />
<br />
|id|name|...|<br />
<br />
<br />
table 'type'<br />
<br />
<br />
|id|name|...|<br />
<br />
<br />
table 'call'<br />
<br />
<br />
|id|value|pilot.id|type.id|<br />
<br />
<br />
The result should look like:<br />
<br />
<br />
|--crosstab--|type#1.name|type#2.name|type#3.name|...|<br />
<br />
|pilot.name#1|call.value#11|call.value#12|call.value#13|...|<br />
<br />
|pilot.name#2|call.value#21|call.value#22|call.value#23|...|<br />
<br />
|pilot.name#3|call.value#31|call.value#32|call.value#33|...|<br />
<br />
<br />
What I want to do is the following:<br />
<br />
I want to "create" a new collumn which contains the following:<br />
<br />
type#4.name = (type#1.name)/(type#3.name) (of cource, I cannot divide strings).<br />
<br />
The result should show call.value#4x = (call.value#1x)/(call.value#3x)<br />
<br />
How can I create such a function? Computed Collums won't work.<br />
<br />
Thanks!