I'm trying to format large dollar values to $0.0K, $000.0M, and $000.0B formats without it rounding up in the ten thousands digit or ignoring the five numbers to the left of the decimal.
Numbers I have: ........Want ............. What I Get
$989,999 ................. $0.9K ............. $1.0K
$111,496,000 ........... $111.4M ......... $111.5M
$111,496,000,000 ..... $111.4B ......... $111.5B
I'm using conditional formating to get the $0.0K, $000.0M, and $000.0B formats.
<=1000000 ....................................... _($0.0,,"K"_)
>=1000000000 .................................. _($.0,,"M"_)
Between=1000000 and 1000000000 ..... _($.0,,,"B"_)
Need help on how to ignore the rounding up on each value?
Thanks
JW
Numbers I have: ........Want ............. What I Get
$989,999 ................. $0.9K ............. $1.0K
$111,496,000 ........... $111.4M ......... $111.5M
$111,496,000,000 ..... $111.4B ......... $111.5B
I'm using conditional formating to get the $0.0K, $000.0M, and $000.0B formats.
<=1000000 ....................................... _($0.0,,"K"_)
>=1000000000 .................................. _($.0,,"M"_)
Between=1000000 and 1000000000 ..... _($.0,,,"B"_)
Need help on how to ignore the rounding up on each value?
Thanks
JW
Last edited: