T
Tom
I use Running Sum (Field Subtotal) in a report.
This is what report looks like:
Subtotal Running Sum
======== ===========
10 10
15 25
5 30
12 42
Here's what I'm trying to achieve...
If the value of "Running Sum" >= 30, I want to underline the FIRST RECORD
where the epxression is true.
I use an UNBOUND field with the following expression. The background color
is transparent, so I actually move
the UNBOUND FIELD across both fields (Subtotal and Running Sum)... it gives
me the underlining effect.
=IIF([RunningSum]>=30,"_______","")
The IIF works fine, except that it underlines ALL records where the
expression is true. So, in the example data
above, (5 30) & (12 42) is underlined (well, because both "30" and "42"
meet the criteria).
Does anyone know of a workaround solution (or even "nicer" solution than
mine) where ONLY THE 1ST RECORD MEETING THE
CRITERIA is underlined?
Thanks,
Tom
This is what report looks like:
Subtotal Running Sum
======== ===========
10 10
15 25
5 30
12 42
Here's what I'm trying to achieve...
If the value of "Running Sum" >= 30, I want to underline the FIRST RECORD
where the epxression is true.
I use an UNBOUND field with the following expression. The background color
is transparent, so I actually move
the UNBOUND FIELD across both fields (Subtotal and Running Sum)... it gives
me the underlining effect.
=IIF([RunningSum]>=30,"_______","")
The IIF works fine, except that it underlines ALL records where the
expression is true. So, in the example data
above, (5 30) & (12 42) is underlined (well, because both "30" and "42"
meet the criteria).
Does anyone know of a workaround solution (or even "nicer" solution than
mine) where ONLY THE 1ST RECORD MEETING THE
CRITERIA is underlined?
Thanks,
Tom