Johnny C
Well-known Member
- Joined
- Nov 7, 2006
- Messages
- 1,069
- Office Version
- 365
- Platform
- Windows
In the banking world, a lot of numbers are quoted as 'basis points' - 1/100th or 1%.
it's easy to format whole numbers as "bp", but it's not ideal as you need to convert the decimal number by multiplying by 10,000 to geta whole number and then have a format as
Is there a way to automatically scale a number using a format, so that 0.0065 can be formatted as bp? I've large tables of interest margins that need formatting as bp but will be used in revenue calculations, and don't want to replicate them needlessly
I know you can do thousands and millions, but can't see a way to do it in single magnitudes
it's easy to format whole numbers as "bp", but it's not ideal as you need to convert the decimal number by multiplying by 10,000 to geta whole number and then have a format as
Code:
#,##0" bp";[Red]-#,##0" bp"
Is there a way to automatically scale a number using a format, so that 0.0065 can be formatted as bp? I've large tables of interest margins that need formatting as bp but will be used in revenue calculations, and don't want to replicate them needlessly
I know you can do thousands and millions, but can't see a way to do it in single magnitudes