Specifications
_____________________________________________________________________ 
_____________________________________________________________________ 
 CONCISE GUIDE FANUC 92 
3 conditioned skip if different 
Example: 
IF[#101 NE #102] GOTO1000 (skip to block N1000 if parameter #101 is different from 
 parameter #102, if the two parameters are the same 
  the program passes to the next block) 
4 conditioned skip if greater than
Example: 
IF[#101 GT #102] GOTO1000 (skips to block N1000 if parameter #101 is greater than 
 parameter #102, if parameter #102 is greater or equal to  
  parameter #101 the program continues with the next block) 
5 conditioned skip if less than
Example: 
IF[#101 LT #102] GOTO1000 (skips to block N1000 if parameter #101 is less than 
  parameter #102, if parameter #102 is less than or equal to  
 parameter #101 the program continues with the next block) 
6 conditioned skip if greater than or equal to
Example: 
IF[#101 GE #102] GOTO1000 (skips to block N1000 if parameter #101 is greater than or   
  equal to parameter #102, if parameter #102 is greater than 
  parameter #101 the program continues with the next block) 
7 conditioned skip if less than or equal to
Example: 
IF[#101 LE #102] GOTO1000  (skips to block N1000 if parameter #101 is less than or 
 equal to parameter #102, if parameter #102 is less than 
  parameter #101 the program continues with the next block 










