Error Messages/40113


Error message examples

Local identifier name PresentValue already in use.

Cause

You have defined the same local identifier again using Var.

Local value 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 already defined.

See Also

Comments


You are not allowed to post comments.