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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Process Job Error when opening Report

Status
Not open for further replies.

RDG55

IS-IT--Management
Jun 21, 2005
1
0
0
US
When trying to open a report from Destop Info I get the following error, anyone have any ideas.

ProcessJob(): Print job for viewing report(\\bhappsvr2\seagate info\output\~ci13rpn.rpt) fails with Error (PEEncapsulatePage : Error in formula <% Net Occupancy>. '(({@Occupied No Notice Null} + {@Vac Rented Null} + {@Notice Rented Null})/{@Unit Count Null}) * 100 ' Division by zero.)

 
This is an issue with a formula within the report itself. At some point in your data, the {@Unit Count Null} formula is returning a 0 value. I would rewrite this formula:
Code:
if {@Unit Count Null} > 0 then
(({@Occupied No Notice Null} + {@Vac Rented Null}  + {@Notice Rented Null})/{@Unit Count Null}) * 100
else 0

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top