Narrowing It Down When Everything Tests OK

Why this matters

The worst callbacks are the ones where every component you test reads fine, the unit runs while you stand there, and the customer swears it failed an hour ago. Replacing parts at random to "see if it sticks" burns your margin and your reputation. A repeatable method for cornering a fault that hides from your meter is one of the most valuable skills a tech can build.

Confirm the complaint before you confirm the part

"Everything tests OK" usually means you are testing the wrong thing, or testing it under the wrong condition. Start by pinning down what "broken" actually looked like.

  • Get the customer's exact words: when it happened, what they heard or smelled, what they were doing.
  • Ask what changed recently: a storm, a new appliance on the circuit, a remodel, a part someone else replaced.
  • Establish whether the fault is constant (always wrong) or intermittent (wrong sometimes). These need completely different approaches.

A constant fault you can find with steady testing. An intermittent fault you have to catch in the act or provoke on purpose.

The fault is hiding in a condition you have not reproduced

Components fail under load, heat, vibration, time, or a specific position - not while sitting idle on your bench. If it tests fine at rest, change the condition and test again.

  • Load. A circuit, valve, or motor that reads correctly unloaded can sag the moment it has to do work. Test under real operating load, not at idle.
  • Heat. Many faults only appear once a part reaches operating temperature. Let the system run until it is hot, then retest. A solder joint, a connector, or a winding can open up only when expanded.
  • Vibration and movement. Tap, flex, or gently wiggle suspect wiring and connectors while watching your reading. A number that jumps when you move something just told you where the fault is.
  • Time. Some failures take minutes or hours. If you cannot wait, set up monitoring and leave, or have the customer note conditions when it next quits.

Divide the system in half

When you have no obvious suspect, do not test components in the order they happen to be in front of you. Split the system at its midpoint and ask which half the fault lives in. Then split that half. This is the fastest way through a complex chain because each test eliminates a large chunk at once instead of one part at a time.

A useful split point is wherever you can read both an input and an output. If the input is good and the output is wrong, the fault is in or after that stage. If the input is already wrong, move upstream. Work toward the source until good-in / bad-out points at a single stage.

Read the whole loop, not just the part

A component can be perfect while the path around it is not. After a part tests good, check what feeds and connects it.

  • Connections. Loose, corroded, or back-stabbed connections cause more "no fault found" calls than dead parts do. Check terminations under load and under heat.
  • Supply quality. Confirm the part is actually getting what it needs: correct voltage, correct pressure, correct flow, clean fuel or clean signal. A starved part behaves like a bad part.
  • The return or ground path. Half a circuit is the path back. A poor ground or a restricted return line produces symptoms that point everywhere except the real cause.
  • Controls and safeties. A safety device doing its job, or a control that is mis-set, can look like a failure to someone hunting for a broken part.

Trust documented values over your gut

When everything "seems" fine, stop comparing to memory and compare to a number. Pull the nameplate, the spec sheet, or the manufacturer's documentation and read the actual value against the actual reading. "Looks about right" is where intermittent faults survive. A reading that is in range but drifting, or a value that is technically passing but at the edge of its tolerance, is often your culprit.

Keep notes as you go. Write down each reading and the condition you took it under. The pattern across several readings frequently shows the fault that no single reading does.

When to stop and reset the approach

If you have divided the system, tested under load and heat, checked the full loop, and the fault still will not show:

  • Walk away from the unit for a few minutes, then come back and re-read the complaint cold. Fresh eyes catch the assumption you locked onto early.
  • Consider that the complaint and the symptom may be two different problems. Treat them separately.
  • Set up to catch it in the act rather than chasing it now. A monitored leave-behind, or clear instructions for the customer, beats another hour of poking a unit that runs fine for you.

Document what tested good. The next person, including future you, needs to know what has already been ruled out so the fault gets cornered instead of re-chased.

References

  • OSHA general industry guidance on safe troubleshooting and lockout/tagout practices
  • Manufacturer service documentation and equipment nameplate specifications for rated values
  • Trade-standard diagnostic practice (half-split / divide-and-conquer fault isolation)
  • See related: The Instrument You Don't Trust Decision Tree; Calibration: When Your Meter Lies