Created
April 27, 2016 16:00
-
-
Save stucka/610eb2e67e56261f507e55efaaf7e0ae to your computer and use it in GitHub Desktop.
Round to tenths of millions, billions, thousands in Excel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=IF(B2<1000000,"$"&(ROUND((B2/1000000),1)&" thousand"),IF(B2>1000000000,"$"&(ROUND((B2/1000000000),1)&" billion"),"$"&(ROUND((B2/1000000),1)&" million"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment