Utilization rates for Machines/Operations

What is the best way to go about getting utilization rates for machines/operations?

We want to take our current time clocked in on each machine/operation versus the hours they are able to run each day.

Does anyone have any advice?

Try writing a BAQ that pulls the LaborDtl records together and sums them by job/asm/op. You normally want to sum the ProdHours and SetHours separate, for clarity. That will at least give you the current time users are taking. If you want to know time per part, then you have to also take into account the number of completed parts, and do a little division.

Comparing those results to the hours available (machine hours and labor hours) should give you the results you want.
Good luck!