Access Beginner
Active Member
- Joined
- Nov 8, 2010
- Messages
- 311
- Office Version
- 2016
- Platform
- Windows
Hi all,
I have a custom format which will display millions as $2.5M and thousands as $249.9K. these values will always be above $100,000 and got up to a couple hundred million. However there are some newly created regions where data will no exist for a particular period and I have put an iferror around my vlookup and as a result the chart that this range is based off returns a zero. I have a custom format which will not display 0 in my chart, but I cant combine the two custom formats. Is it possible?
I have a custom format which will display millions as $2.5M and thousands as $249.9K. these values will always be above $100,000 and got up to a couple hundred million. However there are some newly created regions where data will no exist for a particular period and I have put an iferror around my vlookup and as a result the chart that this range is based off returns a zero. I have a custom format which will not display 0 in my chart, but I cant combine the two custom formats. Is it possible?
Code:
#,##0;-#,##0;;
Code:
[>=1000000] $#,##0.0,,"M";[>0] $#,##0.0,"K";