Extracting integers or decimals from a decimal value

MI
Member Posts: 20
Hi all,
I'm sometimes stumbling in the different forums over the same question about how to extract the decimal places of a decimal value.
There are some good solutions but if you take a closer look at the format function itself then you are getting a pretty nice solution for most of your request.
1) Extracting the decimal places of a decimal value for display purposes:
Try this: MESSAGE( '%1', COPYSTR( FORMAT( 1234.5, 0, '<Precision,2:><Decimals>'), 2) );
You have to use "<Precision,..." because otherwise you will get a blank string if the decimal places are 0!
Use "2:" to get at least 2 decimal places up to infinite decimal places. If you want to get allways 2 decimal places use "2:2"
2) Extracting the integer value of a decimal value for display purposes
Try this: MESSAGE( '%1', FORMAT( 1234.5, 0, '<Integer>') );
Just a little hint, I hope someone can use.

...Manfred
I'm sometimes stumbling in the different forums over the same question about how to extract the decimal places of a decimal value.
There are some good solutions but if you take a closer look at the format function itself then you are getting a pretty nice solution for most of your request.
1) Extracting the decimal places of a decimal value for display purposes:
Try this: MESSAGE( '%1', COPYSTR( FORMAT( 1234.5, 0, '<Precision,2:><Decimals>'), 2) );
You have to use "<Precision,..." because otherwise you will get a blank string if the decimal places are 0!
Use "2:" to get at least 2 decimal places up to infinite decimal places. If you want to get allways 2 decimal places use "2:2"
2) Extracting the integer value of a decimal value for display purposes
Try this: MESSAGE( '%1', FORMAT( 1234.5, 0, '<Integer>') );
Just a little hint, I hope someone can use.

...Manfred
0
Comments
-
Thank you Manfred!
=D>0 -
Very Happy Very Happy Very Happy Very Happy Very Happy YES ! YES !
_________________adil0 -
Or for generic purposes (= to store on a value to use for calculations)... simply:
Integer part: IntegerPart := ROUND(myVariable,1,'<');
Decimal part: decimalPart := myVariable - (ROUND(myVariable,1,'<');0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions