Using CR 10.
I've got a formula in a subreport in the Details section.
The first two results are printing when the Sample equals 1 and 2. When Sample = 3, the transdate value is not printed. When I modify the code, so that Test is uncommented, it prints as well. The SQL used by this subreport returns a value for the transdate...stumped
I've got a formula in a subreport in the Details section.
The first two results are printing when the Sample equals 1 and 2. When Sample = 3, the transdate value is not printed. When I modify the code, so that Test is uncommented, it prints as well. The SQL used by this subreport returns a value for the transdate...stumped
Code:
If {VW_RDE_LDS_MOLD_DATA.SAMPLE} = 1 Then
{VW_RDE_LDS_MOLD_DATA.OPERATORID}
Else IF {VW_RDE_LDS_MOLD_DATA.SAMPLE} = 2 Then
"Trans Date"
Else IF {VW_RDE_LDS_MOLD_DATA.SAMPLE} = 3 Then
totext({VW_RDE_LDS_MOLD_DATA.TRANSDATE})
//"Test"