Link to home
Start Free TrialLog in
Avatar of Atomskish
Atomskish

asked on

Making a graph from a field in a report...

In a report, in addition to the fields in my table, I've made a field that returns the days taken to finish a work request:

=([Completed on]-[Request date])

Now I'd like to make a graph of this data against the field [Request ID], which is already in my table, but I'm not sure how. Any ideas? Thanks.
ASKER CERTIFIED SOLUTION
Avatar of forester
forester

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Atomskish
Atomskish

ASKER

Thanks. That seems like it should work, but I get this error:

Run-time error '2100'

The form or subform control is too large for this location.

------------------------------------------------------------------------------------

Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
   Box28.Width = (([Completed (mm/dd/yyyy)] - [Request date]) / 100) * (1440 * 4)
End Sub
Never mind, now it works. Thanks!