I have one more doubt
Consider i have a CRMDecimal a=444.3200000
I just want to omit the zero's and need a=444.32
Pl help me on this .If i try to convert it to money i cant.
do we have any other way to determine the floating pts in decimal
Hi Krishnan
you can control the precision of the Attribute of the type CRMDecimel
Go the customisation and open the entity open the attribute change the precision
Pls see the attach image
hth
dkay
If the problem is resolved, we would appreciate a post explaining the resolution and mark the post answered and close the thread.
Dear Crm_developer,
i NEED to do that in code.Not in API.i am comparing the thing in query expression.Thanks
Hi Krishnan,
You can use Money money = new Money(a.Value);
Thanks, -Jiulong