Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CJ CJ is offline
external usenet poster
 
Posts: 102
Default IF(ISBLANK) with other criteria

Hello ALL

I use ISBLANK all the time as I don't like to see div or num errors in a
cell :)

I now want to add something to it, but not sure how ...

The formula in CELL E6 is this =IF(ISBLANK(D6),"",LOG(D6)) ... But when I
type a zero into D6 I get a number error #NUM! ... I would like to add to the
formula so when I type a zero into D6 it puts a zero in E6 ...

Any suggestions ...???

Thanks ... CJ
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default IF(ISBLANK) with other criteria

Maybe

=IF(OR(D6=0,ISBLANK(D6)),"",LOG(D6))

Mike

"CJ" wrote:

Hello ALL

I use ISBLANK all the time as I don't like to see div or num errors in a
cell :)

I now want to add something to it, but not sure how ...

The formula in CELL E6 is this =IF(ISBLANK(D6),"",LOG(D6)) ... But when I
type a zero into D6 I get a number error #NUM! ... I would like to add to the
formula so when I type a zero into D6 it puts a zero in E6 ...

Any suggestions ...???

Thanks ... CJ

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default IF(ISBLANK) with other criteria

Remember that if D6 has a formula such as =IF(D510,D5,""), then even when
D5 is less than 10, cell D6 will never pass the ISBLANK test.

Alternative: =IF(ISERROR(LOG(D6)),"",LOG(D6))
--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"CJ" wrote in message
...
Hello ALL

I use ISBLANK all the time as I don't like to see div or num errors in a
cell :)

I now want to add something to it, but not sure how ...

The formula in CELL E6 is this =IF(ISBLANK(D6),"",LOG(D6)) ... But when
I
type a zero into D6 I get a number error #NUM! ... I would like to add to
the
formula so when I type a zero into D6 it puts a zero in E6 ...

Any suggestions ...???

Thanks ... CJ



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CJ CJ is offline
external usenet poster
 
Posts: 102
Default IF(ISBLANK) with other criteria

Thank you so much, Pascal :)

CJ

"papou" wrote:

Hello CJ
=IF(ISBLANK(D6),"",IF(D6=0,0,LOG(D6)))

HTH
Cordially
Pascal

"CJ" a écrit dans le message de news:
...
Hello ALL

I use ISBLANK all the time as I don't like to see div or num errors in a
cell :)

I now want to add something to it, but not sure how ...

The formula in CELL E6 is this =IF(ISBLANK(D6),"",LOG(D6)) ... But when
I
type a zero into D6 I get a number error #NUM! ... I would like to add to
the
formula so when I type a zero into D6 it puts a zero in E6 ...

Any suggestions ...???

Thanks ... CJ






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
isBlank() alex Excel Worksheet Functions 6 February 8th 07 10:33 PM
ISBLANK Gimpy815 Excel Worksheet Functions 2 February 24th 06 06:09 PM
IF(ISBLANK) Bill R Excel Worksheet Functions 4 August 13th 05 07:43 PM
If(ISBLANK) Bill R Excel Worksheet Functions 1 August 13th 05 05:56 PM
ISBLANK Aaron Neunz Excel Worksheet Functions 3 November 12th 04 05:40 PM


All times are GMT +1. The time now is 12:54 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"