Please post your software version with any post about any software product.
Try using:
Propercase({table.field})
Not sure why you'd hardode a string and then use mid against it to eliminate it, I assume that you're just too busy to use the actual field name...
I would take a different approach to that as well, and given your limited understanding of Crystal, you should not state architecture, rather post technical information and ask for assistance.
I'd use:
if instr({table.field},"/") > 0 then
mid((propercase({table.field}),instr({table.field},"/")+1)
else
(propercase({table.field})
Successful posts tend to include basic info:
Crystal version
Database/connectivity used
Example data
Expected output
-k