Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 43
Default Function indicating a row have empty value on several columns

I am trying to get an IF formula that will show rows that have empty cells. A
formula on column F that indicates a row that have empty values on column C,
D and E.


column A column B column C column D column E column F

1 G C E E
2 G False row
3 D R R R
4 E False row
5 O False row
6 T R R G

Any suggestion?

Thanks
--
Aline
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 104
Default Function indicating a row have empty value on several columns

Returns TRUE, if cells D to E are empty::
=AND(ISBLANK(C1),ISBLANK(D1),ISBLANK(E1))

If it must be an IF statement:
=IF(AND(ISBLANK(C1),ISBLANK(D1),ISBLANK(E1)),"Cell s empty","Cells not
empty")

Cheers,

Joerg Mochikun




"Aline" wrote in message
...
I am trying to get an IF formula that will show rows that have empty cells.
A
formula on column F that indicates a row that have empty values on column
C,
D and E.


column A column B column C column D column E column F

1 G C E E
2 G False row
3 D R R R
4 E False row
5 O False row
6 T R R G

Any suggestion?

Thanks
--
Aline



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Function indicating a row have empty value on several columns

Try

=IF(COUNTBLANK(C1:E1)=0,"No blanks",COUNTBLANK(C1:E1)&" Blank Cells")


"Aline" wrote in message
...
I am trying to get an IF formula that will show rows that have empty cells.
A
formula on column F that indicates a row that have empty values on column
C,
D and E.


column A column B column C column D column E column F

1 G C E E
2 G False row
3 D R R R
4 E False row
5 O False row
6 T R R G

Any suggestion?

Thanks
--
Aline



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
how to return non empty cells over several columns iago Excel Discussion (Misc queries) 4 June 11th 07 03:31 PM
Delete rows that are empty across columns ALATL Excel Worksheet Functions 0 November 6th 06 04:09 AM
Empty Rows and Columns fak119 New Users to Excel 1 April 5th 06 12:39 PM
I need a little help with comparing columns and indicating the mat IFIXPCS Excel Worksheet Functions 1 February 22nd 06 05:01 PM
empty columns sisco98 Excel Worksheet Functions 2 June 9th 05 09:47 AM


All times are GMT +1. The time now is 11:35 AM.

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"