SQL Server Crystal Reports Stock description

ljsrvy3e  于 2023-08-02  发布在  其他
关注(0)|答案(1)|浏览(93)

I need to show a part of a description; if the description is Testing (6) (with brackets), I need to show only the 6 in the bracket. Any ideas,s, please?

tried the below command mid ({tablename}, 1, inStr(tablename, "(")-1)

kfgdxczn

kfgdxczn1#

Crystal Reports has an ExtractString() function, so use an expression like this:

ExtractString(yourstring, "(", ")");

相关问题