Hi cass5957! That was a tricky problem! Here is the code that I used: Inits = CAT(SUBSTR(FirstInit,1,1), SUBSTR(MiddleInit,1,1), SUBSTR(LastInit,1,1)); Otherwise if you want to use the compress function I also was able to get this code to work in the same way: Inits = COMPRESS(CAT(FirstInit, MiddleInit, LastInit), '.'); Hope this helps! A
... View more