RobHVB6Sql
Programmer
Hmm, a prickly one here. ![[evil] [evil] [evil]](/data/assets/smilies/evil.gif)
I wish to highlight the mimimum of a number field 'AgeAtDiagnosis' in a report.
I have a running total (#RTotal0) and can get the minimum of the number field in the report footer.
(I think a running total was necessary as AgeAtDiagnosis contains 0 values).
I now want to highlight the details row where it occured.
I have a formula 'HighlightAge@Diag' placed in the details row:
I've tried to set @RoundRunTotal to EvaluateAfter but then of course it doesn't hightlight the appropriate row.
How can I access the minimum answer in 'HighlightAge@Diag'
Any ideas?
PS 'Truncate-Age@Diag' is also here for reference
Rob Hasard
(VB6 /SQL 7.0 /CR8.5)
![[evil] [evil] [evil]](/data/assets/smilies/evil.gif)
I wish to highlight the mimimum of a number field 'AgeAtDiagnosis' in a report.
I have a running total (#RTotal0) and can get the minimum of the number field in the report footer.
(I think a running total was necessary as AgeAtDiagnosis contains 0 values).
I now want to highlight the details row where it occured.
I have a formula 'HighlightAge@Diag' placed in the details row:
Code:
if {@Truncate-Age@Diag} = {@RoundRunTotal} then
"***"
How can I access the minimum answer in 'HighlightAge@Diag'
Any ideas?
PS 'Truncate-Age@Diag' is also here for reference
Code:
// only show one decimal place
if IsNumeric({spPrintClientByDiagnosis;1.AgeAtDiagnosis}) then
round (ToNumber({spPrintClientByDiagnosis;1.AgeAtDiagnosis}), 1)
else
0
Rob Hasard
(VB6 /SQL 7.0 /CR8.5)