The below examples are selected IF conditions. These seems little tricky ‘IF Conditions’. Easily you can get an idea on usage of multiple conditions. So, you can use these in your projects.
Related: COBOL Evaluate Awesome Ideas
Example:-1
IF (FIELDA NOT > 55 AND NOT < 10)
Example:-2
IF (FIELDA < 10 AND > 55)
Example:-3
IF (FIELDA = 10 OR 15 OR 20 OR 25)
Example:-4
IF (FIELDA NOT = 10 AND 15 AND 20 AND 25)
Recent Posts