ArcGIS ModelBuilder – How to Prevent Running Part of a Model When Iterator Is Used

arcgis-10.0iteratormodelbuilder

My process is to run Buffer on two feature layers, intersect the buffers and then Clip intersected buffers with polygon object from Iterate Feature Selection iterator. Here's my model:
Model with iterator

The model runs Buffers and Intersect firstly, then iterate and create Single Object, and lastly Clip features. But in the next iteration it again runs Buffers and Intersect, what is not needed.

Is it possible to prevent running Buffers and Intersect in each iteration?
In other words, how to create Intersected buffers only once and then reuse it in each iteration?


EDIT:
Following blah's suggestion I managed to create desirable model. I enclose it, because it's slightly different than web-help example:
enter image description here

Best Answer

Nest the iterated part in a sub-model. See the "Advanced Use of Model Iterators" section under Integrating a model within a model in the help.

Related question: Exporting data from Collect Values output in ArcGIS ModelBuilder?

Related Question