joebloeonthego
Technical User
I have a report printing out information about orders. I would like to only show the orders that were late, but still count all orders for the totals. I have added the following code to the Detail onFormat:
Me.Detail.Visible = Me.otcount <> 1
with otcount being 1 for on time, or 0 for late.
This works fine, for 10 or so days of data, but once I run the report with 15 days or more, I get:
run-time error '57452':
overflow
(and it is definitely pointing to 'Me.otcount <> 1')
I can't find reference to this number anywhere.
Certainly I'm doing something fairly standard? I need to run the report with 1-2 months worth of data.
Any help would be greatly appreciated,
Thanx.
Me.Detail.Visible = Me.otcount <> 1
with otcount being 1 for on time, or 0 for late.
This works fine, for 10 or so days of data, but once I run the report with 15 days or more, I get:
run-time error '57452':
overflow
(and it is definitely pointing to 'Me.otcount <> 1')
I can't find reference to this number anywhere.
Certainly I'm doing something fairly standard? I need to run the report with 1-2 months worth of data.
Any help would be greatly appreciated,
Thanx.