Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のCrystalReportは、数値を小数点以下2桁に丸める必要があります。試しましたが、の代わりにRound(55.815, 2)返されます。どうすればこれを解決できますか?55.8155.82
Round(55.815, 2)
55.81
55.82
表示のために小数点以下を四捨五入する必要がある場合は、「小数点以下の桁数を減らす」アイコンを使用してください。
これを試してみてください if Remainder(55.815 ,1) > 0.5 then Floor (55.815) + Remainder(55.815 ,1) else Floor (55.815 )+ Remainder(55.815 ,1) これはあなたを助けるかもしれません
if Remainder(55.815 ,1) > 0.5 then Floor (55.815) + Remainder(55.815 ,1) else Floor (55.815 )+ Remainder(55.815 ,1)