#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how to hide #DIV/0!

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default how to hide #DIV/0!

Maybe

=IF(D9<0,D8/D9,"")

Mike

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how to hide #DIV/0!

thanks, it really help a lot!!!

"Mike H" wrote:

Maybe

=IF(D9<0,D8/D9,"")

Mike

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default how to hide #DIV/0!

Your welcome


"chicrocker21" wrote:

thanks, it really help a lot!!!

"Mike H" wrote:

Maybe

=IF(D9<0,D8/D9,"")

Mike

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default how to hide #DIV/0!

Or, if you want to flag the divide error if you genuinely have a zero in D9,
but leave the result blank if D9 is empty, try
=IF(D9="","",D8/D9)
--
David Biddulph

"Mike H" wrote in message
...
Maybe

=IF(D9<0,D8/D9,"")

Mike

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there
is
no values yet for those cells and #DIV/0! appears,but i want the
worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!





  #6   Report Post  
Posted to microsoft.public.excel.misc
Don Don is offline
external usenet poster
 
Posts: 487
Default how to hide #DIV/0!

another method

=if(iserror(d8/d9),0,d8/d9)

this will catch 0 and blanks

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how to hide #DIV/0!

And mask any other error which may come along.


Gord Dibben MS Excel MVP

On Thu, 12 Jun 2008 08:04:00 -0700, Don wrote:

another method

=if(iserror(d8/d9),0,d8/d9)

this will catch 0 and blanks

"chicrocker21" wrote:

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
hide code does not hide Wanna Learn Excel Discussion (Misc queries) 2 March 6th 08 07:21 PM
Hide Unhide Hide again DTTODGG New Users to Excel 1 February 15th 06 03:22 PM
How do I hide a TAB? Stilla Excel Worksheet Functions 3 December 12th 05 05:20 PM
Hide #N/A Scott Excel Discussion (Misc queries) 2 October 18th 05 07:42 PM
How do I hide a worksheet in Excel and use a password to un-hide . Dchung Excel Discussion (Misc queries) 3 December 2nd 04 06:24 AM


All times are GMT +1. The time now is 12:46 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"