Crystal Report字段中的掩码

时间:2012-09-26 17:23:04

标签: crystal-reports

在巴西我们有一个名为CNPJ的号码,这个掩码为00.000.000 / 0000-00,我把这个号码保存在SQL中就像一个int列,当我让我的报告工作正常时,所以,fiels出现了    00000000000000 我如何在报告中像一个面具一样戴上这样的表现                             00.000.000 / 0000-00

感谢任何方向

2 个答案:

答案 0 :(得分:1)

如果您不需要前导零,那么:

local stringvar sample := totext({table.number},0,'');
if length(sample)<>14 then "Handle the error case" else
  picture(sample,"xx.xxx.xxx/xxxx-xx")

否则,在:

中添加前导零
local stringvar sample := totext({table.number},"00000000000000");
picture(sample,"xx.xxx.xxx/xxxx-xx")

答案 1 :(得分:0)

必须使用此公式添加公式字段 mid({imprimePJ; 1.doc_cnpj},1,2)+“。”+ mid({imprimePJ; 1.doc_cnpj},3,3)+“。”+ mid({imprimePJ; 1.doc_cnpj},6, 3)+ “/” +  中期({imprimePJ; 1.doc_cnpj},9,4)+ “ - ” +中期({imprimePJ; 1.doc_cnpj},13,2)