Error Messages/40113
Error Message Examples
Local variable name PresentValue already in use.
Cause
You have defined the same local variable again using Var.
Local variable PresentValue is being defined twice in the example below:
...
Var PresentValue := C/((1+i)^t);
...
Var PresentValue := C/i;
...
Remedy
- Change one of the variable names to make both unique.
- Remove the Var keyword if you want to assign a different value to the local variable already defined.
Comments
<comments />
Enable comment auto-refresher