I have a calculated field where I am trying to increment the string value by 1.
Example if the field is 'B', then I want the value to be 'C'. Or if the field is 'L', then the new value would be 'M', and so forth.
If I try to use the function 'chr', access gives me the error that "The expression cannot be used in a calculated column" ?
IIf(IsNull([TestSuffixId]),'A',chr(Asc([TestSuffixId]) + 1))