Hi,
I have a CR10 report accessing data from an Oracle 9i database using a stored procedure.
What I'm trying to do is combine the results from two formula fields into a summarised field of a crosstab. The problem is that, although the values will appear normally if displayed individually, if I try to combine them only one or the other values is displayed.
The formulas look like this:
Formula 1:
Formula 2:
I've tried calling formula 2 from within formula 1, but only the results of formula 1 are displayed. I've also tried creating a third formula as follows, but this also only displays one of the two values:
Formula 3:
I know I could display the two formulas one underneath the other in the report but there are various issues with this, so I really need them to be next to each other within a single cell.
Thanks in advance for any suggestions.
Gavin
I have a CR10 report accessing data from an Oracle 9i database using a stored procedure.
What I'm trying to do is combine the results from two formula fields into a summarised field of a crosstab. The problem is that, although the values will appear normally if displayed individually, if I try to combine them only one or the other values is displayed.
The formulas look like this:
Formula 1:
Code:
if {GET_CONTRIBUTION_PAGE.CM_ITEM_REF} = "P_Code" then
if {GET_CONTRIBUTION_PAGE.CM_VALUE} = "1.00" then
formula = " " & chrw(197)
elseif {GET_CONTRIBUTION_PAGE.CM_VALUE} = "2.00" then
formula = " " & chrw(198)
elseif {GET_CONTRIBUTION_PAGE.CM_VALUE} = "3.00" then
formula = " " & chrw(199)
end if
end if
Code:
if {GET_CONTRIBUTION_PAGE.CM_ITEM_REF} = "Number" then
if {GET_CONTRIBUTION_PAGE.CM_VALUE} = "1.00" then
formula = " " & chrw(194)
elseif {GET_CONTRIBUTION_PAGE.CM_VALUE} = "2.00" then
formula = " " & chrw(195)
elseif {GET_CONTRIBUTION_PAGE.CM_VALUE} = "3.00" then
formula = " " & chrw(196)
end if
end if
I've tried calling formula 2 from within formula 1, but only the results of formula 1 are displayed. I've also tried creating a third formula as follows, but this also only displays one of the two values:
Formula 3:
Code:
{@formula1} & {@formula2}
I know I could display the two formulas one underneath the other in the report but there are various issues with this, so I really need them to be next to each other within a single cell.
Thanks in advance for any suggestions.
Gavin