Number Group Seperator

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

When I set the NumberFormat of a worksheet column to #'##0, Excel
converts it to #\'##0.

As a result, instead of getting

0
1'234
234

I get

'0
1'234
'234

Does anyone know why and how I can prevent this? Basically, when I
click on 'Format Cells' for the column, I want to see #'##0 and not
#\'##0 as the Custom Number Type. I'm using VB.Net v7.1.3088 and the
MS Excel 11.0 Object Library on Win2K english versions.

Thanks
 
Try to use conditional formatting - I think, it's only way out

Applicable to your trouble:

[<=999]##0;[>999]#'##0;#

e.i.
if less than or equal to 999, then ##0
if more than 999, then #'##0
default (impossible in this case) - #

Regards,

David Avsajanishvili
 
Try to use conditional formatting. I think, it's only way out.

Applicable to your trouble:

[<=999]##0;[>999]#'##0;#
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top