|
|
|
|
|
- Reason
- Correction
- Example
- The beginning of the conditional statement was not entered
Error 14: ELSE statement without IF
You are using the ELSE keyword without using the corresponding conditional statement IF. Check the code of your conditional statement. The beginning of the conditional statement was not entered Code triggering the error EDT_Lesson = "French" ELSE EDT_Lesson = "English" END
Possible corrections Complete the conditional statement. IF TableSelect(TABLE_Lesson) = 1 THEN EDT_Lesson = "French" ELSE EDT_Lesson = "English" END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|