It is actually somewhat possible. But not recommended. If you need to break out of a loop, use a While Loop.
If you're dead set on using a For loop, put a Case structure in the For loop and put all your code in the False case and leave the True case empty. Put a shift register on the For loop and wire a Flase boolean to it that you will change to True when you want to exit the For loop early. On the next loop iteration, the empty True case will run and continue to run for the remainder of the For loop count.
So it really doesn't stop the For loop early, but it does stop running your code when you need it to.
Ed

Ed Dickens - Certified LabVIEW Architect
Lockheed Martin Space
Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.