#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 217
Default IF AND ISBLANK

I'm using 2007.
The Worksheet as 6000 line and subtotal of 2000. The subtotal is base on the
product number (C column) and I would like to have not only the product
number (C column) on the sub-total line but also the description (D column)

A an example I want cell D3 (which is blank) to repeat the description text
in D2

So I'm using the formula

=IF(ISBLANK(D3),"(D2)","")

But it does not work. the result is also 0

What am I missing ?

Thank you

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 419
Default IF AND ISBLANK

Louise,

Remove the quotes and parentheses from D2:

=IF(ISBLANK(D3),"(D2)","")

....should become...

=IF(ISBLANK(D3),D2,"")

Actually, looking closer at that, this cell will be blank when there is
something in D3 and it will have D2's value in it when D3 is blank (if I'm
not mistaken). Don't you want the opposite?

If that is the case, then change my solution above to...

=IF(ISBLANK(D3),"",D2)

HTH,

Conan


"Louise" wrote in message
...
I'm using 2007.
The Worksheet as 6000 line and subtotal of 2000. The subtotal is base on
the
product number (C column) and I would like to have not only the product
number (C column) on the sub-total line but also the description (D
column)

A an example I want cell D3 (which is blank) to repeat the description
text
in D2

So I'm using the formula

=IF(ISBLANK(D3),"(D2)","")

But it does not work. the result is also 0

What am I missing ?

Thank you



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() kw_uh97 Excel Worksheet Functions 8 June 30th 07 06:42 AM
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
ISBLANK Aaron Neunz Excel Worksheet Functions 3 November 12th 04 05:40 PM


All times are GMT +1. The time now is 04:06 AM.

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

About Us

"It's about Microsoft Excel"