Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default I need to know how to leave the cell blank

=IF(F23<=$BT$6,$BZ$6,IF(AND(F23=$BS$7,F23<=$BT$7) ,$BZ$7,IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,IF(AND( F23=$BS$9,F23<=$BT$9),$BZ$9,IF(AND(F23=$BS$10,F2 3<=$BT$10),$BZ$10,IF(AND(F23=$BS$11),$BZ$13,"0")) ))))
This is my formula, how do I make the cell read zero if there is no
information in f23
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default I need to know how to leave the cell blank

=IF(F23="","",your_formula) to get a blank
=IF(F23="",0,your_formula) to get a zero
--
Gary''s Student - gsnu200785
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default I need to know how to leave the cell blank

=if(f23="",0,yourlongformulahere)

=IF(F2="",0,
IF(F23<=$BT$6,$BZ$6,
IF(AND(F23=$BS$7,F23<=$BT$7),$BZ$7,
IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,
IF(AND(F23=$BS$9,F23<=$BT$9),$BZ$9,
IF(AND(F23=$BS$10,F23<=$BT$10),$BZ$10,
IF(AND(F23=$BS$11),$BZ$13,0)))))))

(I removed the double quotes around the 0, too.



Peter wrote:

=IF(F23<=$BT$6,$BZ$6,IF(AND(F23=$BS$7,F23<=$BT$7) ,$BZ$7,IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,IF(AND( F23=$BS$9,F23<=$BT$9),$BZ$9,IF(AND(F23=$BS$10,F2 3<=$BT$10),$BZ$10,IF(AND(F23=$BS$11),$BZ$13,"0")) ))))
This is my formula, how do I make the cell read zero if there is no
information in f23


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default I need to know how to leave the cell blank

=IF(F23="","",IF(F23<=$BT$6,$BZ$6,INDEX(BZ7:BZ11,M ATCH(1,(F23=BS7:BS11)*(F23<=BT7:BT11),0))))

which is an array formula, so enter with Ctrl-Shift-Enter.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Peter" wrote in message
...
=IF(F23<=$BT$6,$BZ$6,IF(AND(F23=$BS$7,F23<=$BT$7) ,$BZ$7,IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,IF(AND( F23=$BS$9,F23<=$BT$9),$BZ$9,IF(AND(F23=$BS$10,F2 3<=$BT$10),$BZ$10,IF(AND(F23=$BS$11),$BZ$13,"0")) ))))
This is my formula, how do I make the cell read zero if there is no
information in f23



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default I need to know how to leave the cell blank

Thanks it got me in the right direction and I figured it out!

"Bob Phillips" wrote:

=IF(F23="","",IF(F23<=$BT$6,$BZ$6,INDEX(BZ7:BZ11,M ATCH(1,(F23=BS7:BS11)*(F23<=BT7:BT11),0))))

which is an array formula, so enter with Ctrl-Shift-Enter.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Peter" wrote in message
...
=IF(F23<=$BT$6,$BZ$6,IF(AND(F23=$BS$7,F23<=$BT$7) ,$BZ$7,IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,IF(AND( F23=$BS$9,F23<=$BT$9),$BZ$9,IF(AND(F23=$BS$10,F2 3<=$BT$10),$BZ$10,IF(AND(F23=$BS$11),$BZ$13,"0")) ))))
This is my formula, how do I make the cell read zero if there is no
information in f23






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default I need to know how to leave the cell blank

Thanks it got me in the right direction and I figured it out!

"Gary''s Student" wrote:

=IF(F23="","",your_formula) to get a blank
=IF(F23="",0,your_formula) to get a zero
--
Gary''s Student - gsnu200785

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default I need to know how to leave the cell blank

Thanks it got me in the right direction and I figured it out!

"Dave Peterson" wrote:

=if(f23="",0,yourlongformulahere)

=IF(F2="",0,
IF(F23<=$BT$6,$BZ$6,
IF(AND(F23=$BS$7,F23<=$BT$7),$BZ$7,
IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,
IF(AND(F23=$BS$9,F23<=$BT$9),$BZ$9,
IF(AND(F23=$BS$10,F23<=$BT$10),$BZ$10,
IF(AND(F23=$BS$11),$BZ$13,0)))))))

(I removed the double quotes around the 0, too.



Peter wrote:

=IF(F23<=$BT$6,$BZ$6,IF(AND(F23=$BS$7,F23<=$BT$7) ,$BZ$7,IF(AND(F23=$BS$8,F23<=$BT$8),$BZ$8,IF(AND( F23=$BS$9,F23<=$BT$9),$BZ$9,IF(AND(F23=$BS$10,F2 3<=$BT$10),$BZ$10,IF(AND(F23=$BS$11),$BZ$13,"0")) ))))
This is my formula, how do I make the cell read zero if there is no
information in f23


--

Dave Peterson

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
To leave the cell Blank Steved Excel Worksheet Functions 8 April 2nd 08 08:48 PM
To leave a blank cell Steved Excel Worksheet Functions 6 July 18th 06 03:37 AM
leave a cell blank nicolas Excel Worksheet Functions 1 August 2nd 05 01:55 PM
leave cell blank Keith Excel Discussion (Misc queries) 0 May 18th 05 05:46 PM
leave cell blank bj Excel Discussion (Misc queries) 0 May 18th 05 05:43 PM


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