View Single Post
  #2   Report Post  
Nick Hodge
 
Posts: n/a
Default

Jasmon

There are up to four parts to a format in Excel, separated by ;, so

FormatForPositive;FormatForNegative;FormatForZero; FormatForText

So if you want two decimals and parenthesis for negatives, you could use

0.00;(0.00);0.00

Notice you don't need one for text so I have not included it. If you miss a
format type then you should still include it's separator

0.00;;0.00

Has only set a format for positive numbers and zeroes.

You could check help for all the options available in formatting codes and
perhaps read here

http://www.nickhodge.co.uk/gui/formatmenu/cells.htm

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
HIS


"jassmon" wrote in message
...
I don't understand what it means to List two number formats that allow you
to
format the appearance of negative numbers using parentheses?