Hi bayanbaru,
If you only want to hide the zero values:
.. throughout a worksheet, you could use Tools|Options|View and uncheck the
zero values option
.. in a single cell or a range of cells, you could apply a custom format.
For the latter, you could:
.. use Format|Cells|Number to apply the formatting you want for *both* +ve
and -ve values (i.e. the formatting code must include a semi-colon (i.e.
';') to distinguish +ve and -ve values) , then
.. click 'Custom' and add a semi-colon to the end of the formatting code (eg
'#,##0.00_ ;-#,##0.00 ' becomes '#,##0.00_ ;-#,##0.00;')
Cheers