Difference between revisions of "Error Messages/40875"
Line 24: | Line 24: | ||
* [[MakeChangesInTable]] | * [[MakeChangesInTable]] | ||
* [[Table]] | * [[Table]] | ||
− | * [[ | + | * [[Tutorial: Arrays]] |
* [[Arrays and Indexes]] | * [[Arrays and Indexes]] | ||
* [[Function calls and parameters]] | * [[Function calls and parameters]] |
Latest revision as of 19:15, 28 April 2016
Error message examples
Expected the name of a table index.
Cause
On your call to MakeChangesInTable, you did not specify the indexes of the Table being modified.
The following call would trigger this error:
MakeChangesInTable HugeTable Table() 2(1);
Remedies
Specify the indexes of the table being incrementally modified using MakeChangesInTable.
Example of resolving the above call:
MakeChangesInTable HugeTable Table(IndexA) 2(1);
See Also
Comments
Enable comment auto-refresher