-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Accueil > Community > FPScript > How to continue a “For Each Value” Loop in FPScript? > Reply To: How to continue a “For Each Value” Loop in FPScript?
August 6, 2013 at 8:51 am
#9295
Bernhard Kantz
Participant
The following code should work. But should avoid such loops and use the Event Isolation Analysis object.
Dim CURRENT_TEMP
Dim RANGE_MIN = 600
Dim RANGE_MAX = 800
For Each Value CURRENT_TEMP In T_MWE_2 Do
If Not (CURRENT_TEMP > RANGE_MIN And CURRENT_TEMP < RANGE_MAX) Then
// Do nothing. Just get the next value
End
// ...
End