我有以下公式命名@newitemQuant
摘要:Crystal Reports中字符串字段
WhileReadingRecords;
StringVar text := Totext ({AR_SalesBySalesPersonDenim;1.quantity} , 6 , "" ) ;
NumberVar end := length (text) ;
NumberVar clip :=
(if Val (text [ end - 6 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 5 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 4 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 3 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 2 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 1 to end ]) = 0 then 1 else 0) +
(if Val (text [ end - 0 to end ]) = 0 then 1 else 0) ;
text [ 1 to Length (text) - clip ]
這基本上我的數據庫字段{AR_SalesBySalesPersonDenim;1.quantity}
轉換使用NUMBER數據類型爲字符串,它操縱了。並在報告中顯示所得到的STRING。
現在我想在報告中放置結果字符串字段的摘要。無法實現。
我有同樣的公式,以及一個新的公式中使用ToNumber()
嘗試:
但沒有取得任何進展。 在此先感謝
你想在字符串字段上做什麼摘要操作? –