Avatar

Level 7

Opps,

Milly, I erred, use this:

///////////////////////////////  With + or - grades then put this on the "exit"  event of the grade field using formCalc

var letter =  Upper(Substr($,1,1))
var plusMinus   = ""
if      (Len($) > 1)     then
     plusMinus = Substr($,2,1)
endif
$ = Concat(letter,plusMinus)

///////////////////////////////////////

Don't use:  $ = letter + plusMinus

Sorry, got in a hurry,

Stephen