Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Overflow Error

Status
Not open for further replies.

bigdavidt

Programmer
Feb 12, 2004
52
0
0
US
Good afternoon.

I have been working on a query that draws on two subqueries. Each of the subqueries draws on three tables and another query that draws from three small tables. My subqueries seem to work, and my main query seems to work, but when I try to run my report I get a message box that says 'Overflow'. Does anybody have any ideas on what steps I should take?

I am using Access 2003, with an outside table from Hyperion.

Thank you in advance.
 
An overflow is generally caused by a divide by zero. If you are performing any division that might cause this, use an expression like:
IIf([expr1]= 0 , 0 , [expr2]/[expr1])

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top