How to round a decimal to the next nearest “10s”?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
1
down vote
favorite
I have a decimal value 61.31.
I would like to know if it is possible to round it to the next (not neccessarily the nearest) "10s" which is 61.40
Something like
1.07 => 1.10
1.11 => 1.20
61.31 => 61.40
I did some research and I can see setscale()
in Decimal
class but I need the value to the next nearest 10s.
Is it possible to do that in apex ?
apex
add a comment |
up vote
1
down vote
favorite
I have a decimal value 61.31.
I would like to know if it is possible to round it to the next (not neccessarily the nearest) "10s" which is 61.40
Something like
1.07 => 1.10
1.11 => 1.20
61.31 => 61.40
I did some research and I can see setscale()
in Decimal
class but I need the value to the next nearest 10s.
Is it possible to do that in apex ?
apex
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a decimal value 61.31.
I would like to know if it is possible to round it to the next (not neccessarily the nearest) "10s" which is 61.40
Something like
1.07 => 1.10
1.11 => 1.20
61.31 => 61.40
I did some research and I can see setscale()
in Decimal
class but I need the value to the next nearest 10s.
Is it possible to do that in apex ?
apex
I have a decimal value 61.31.
I would like to know if it is possible to round it to the next (not neccessarily the nearest) "10s" which is 61.40
Something like
1.07 => 1.10
1.11 => 1.20
61.31 => 61.40
I did some research and I can see setscale()
in Decimal
class but I need the value to the next nearest 10s.
Is it possible to do that in apex ?
apex
apex
asked 2 days ago
Aaron Wilfred
563517
563517
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
You can use the setScale()
method with RoundingMode.UP
or RoundingMode.CEILING
depending on your preferred behavior with negative numbers. (UP
rounds away from zero, CEILING
towards positive infinity).
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
21:39:19:002 USER_DEBUG [3]|DEBUG|61.4
If you need the second decimal place, just do another setScale(2)
:
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
System.debug(d.setScale(2));
21:41:33:002 USER_DEBUG [3]|DEBUG|61.40
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
You can use the setScale()
method with RoundingMode.UP
or RoundingMode.CEILING
depending on your preferred behavior with negative numbers. (UP
rounds away from zero, CEILING
towards positive infinity).
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
21:39:19:002 USER_DEBUG [3]|DEBUG|61.4
If you need the second decimal place, just do another setScale(2)
:
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
System.debug(d.setScale(2));
21:41:33:002 USER_DEBUG [3]|DEBUG|61.40
add a comment |
up vote
3
down vote
accepted
You can use the setScale()
method with RoundingMode.UP
or RoundingMode.CEILING
depending on your preferred behavior with negative numbers. (UP
rounds away from zero, CEILING
towards positive infinity).
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
21:39:19:002 USER_DEBUG [3]|DEBUG|61.4
If you need the second decimal place, just do another setScale(2)
:
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
System.debug(d.setScale(2));
21:41:33:002 USER_DEBUG [3]|DEBUG|61.40
add a comment |
up vote
3
down vote
accepted
up vote
3
down vote
accepted
You can use the setScale()
method with RoundingMode.UP
or RoundingMode.CEILING
depending on your preferred behavior with negative numbers. (UP
rounds away from zero, CEILING
towards positive infinity).
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
21:39:19:002 USER_DEBUG [3]|DEBUG|61.4
If you need the second decimal place, just do another setScale(2)
:
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
System.debug(d.setScale(2));
21:41:33:002 USER_DEBUG [3]|DEBUG|61.40
You can use the setScale()
method with RoundingMode.UP
or RoundingMode.CEILING
depending on your preferred behavior with negative numbers. (UP
rounds away from zero, CEILING
towards positive infinity).
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
21:39:19:002 USER_DEBUG [3]|DEBUG|61.4
If you need the second decimal place, just do another setScale(2)
:
Decimal d = 61.31;
d = d.setScale(1, RoundingMode.UP);
System.debug(d.setScale(2));
21:41:33:002 USER_DEBUG [3]|DEBUG|61.40
answered 2 days ago
David Reed
25.9k51645
25.9k51645
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f239914%2fhow-to-round-a-decimal-to-the-next-nearest-10s%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown