Skip to content

Instantly share code, notes, and snippets.

@stucka
Created April 27, 2016 16:00
Show Gist options
  • Save stucka/610eb2e67e56261f507e55efaaf7e0ae to your computer and use it in GitHub Desktop.
Save stucka/610eb2e67e56261f507e55efaaf7e0ae to your computer and use it in GitHub Desktop.
Round to tenths of millions, billions, thousands in Excel
=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