Hi there
Need to do a connected trace stopping whenever encountering a low voltage cable or a low voltage overhead line.
ElectricLine::37::Low Voltage Underground Conductor::102::AC Underground LV
ElectricLine::6::Low Voltage Overhead Conductor::100::AC Overhead LV
This is done using condition barriers - in SQL I would create a query like
(ASSETGROUP = 37 and ASSETTYPE = 102) or (ASSETGROUP = 6 and ASSETTYPE = 100)
Using the GP tool I would set it up like this:

How do i know that ArcGIS does an (A and
or (C and D) and not a A and (B or C) and D?
It's the first combination / query that I need.