Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Denny Crane
 
Posts: n/a
Default Help with this formula please!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a third
sheet containing a sell with this formula
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Help with this formula please!

Hi!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)


It means that if cell CKLOG!$G9 is blank then the cell that holds this
formula will remain blank. If cell CKLOG!$G9 is not blank then the cell that
holds this formula will return the value of cell BUDGET!$D$19.

Blank should not be confused with empty.

Biff

"Denny Crane" wrote in message
...
What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a
third
sheet containing a sell with this formula



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Denny Crane
 
Posts: n/a
Default Help with this formula please!

thanks Biff fkor the insight however it aint working. The Budget value is
still being coyied to the cell containing the formula. Any futher thoughts on
it would lbe appreciated.

"Biff" wrote:

Hi!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)


It means that if cell CKLOG!$G9 is blank then the cell that holds this
formula will remain blank. If cell CKLOG!$G9 is not blank then the cell that
holds this formula will return the value of cell BUDGET!$D$19.

Blank should not be confused with empty.

Biff

"Denny Crane" wrote in message
...
What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a
third
sheet containing a sell with this formula




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Help with this formula please!

The Budget value is still being coyied to the cell containing the formula.

Then that means CKLOG!$G9 is not "blank".

Try this:

=IF(LEN(CKLOG!$G9)=0,"",BUDGET!$D$19)

Biff

"Denny Crane" wrote in message
...
thanks Biff fkor the insight however it aint working. The Budget value is
still being coyied to the cell containing the formula. Any futher thoughts
on
it would lbe appreciated.

"Biff" wrote:

Hi!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)


It means that if cell CKLOG!$G9 is blank then the cell that holds this
formula will remain blank. If cell CKLOG!$G9 is not blank then the cell
that
holds this formula will return the value of cell BUDGET!$D$19.

Blank should not be confused with empty.

Biff

"Denny Crane" wrote in message
...
What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a
third
sheet containing a sell with this formula






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Help with this formula please!

A little clarification:

The Budget value is still being coyied to the cell containing the formula.


Then that means CKLOG!$G9 is not "blank".


If there is a formula blank in cell CKLOG!$G9 then:

ISBLANK(CKLOG!$G9)

will evaluate to FALSE.

Biff

"Biff" wrote in message
...
The Budget value is still being coyied to the cell containing the
formula.


Then that means CKLOG!$G9 is not "blank".

Try this:

=IF(LEN(CKLOG!$G9)=0,"",BUDGET!$D$19)

Biff

"Denny Crane" wrote in message
...
thanks Biff fkor the insight however it aint working. The Budget value is
still being coyied to the cell containing the formula. Any futher
thoughts on
it would lbe appreciated.

"Biff" wrote:

Hi!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

It means that if cell CKLOG!$G9 is blank then the cell that holds this
formula will remain blank. If cell CKLOG!$G9 is not blank then the cell
that
holds this formula will return the value of cell BUDGET!$D$19.

Blank should not be confused with empty.

Biff

"Denny Crane" wrote in message
...
What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a
third
sheet containing a sell with this formula









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
paul
 
Posts: n/a
Default Help with this formula please!

its not blank,try =If(CKLOG!$G9="","",BUDGET!$D$19)
--
paul
remove nospam for email addy!



"Denny Crane" wrote:

thanks Biff fkor the insight however it aint working. The Budget value is
still being coyied to the cell containing the formula. Any futher thoughts on
it would lbe appreciated.

"Biff" wrote:

Hi!

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)


It means that if cell CKLOG!$G9 is blank then the cell that holds this
formula will remain blank. If cell CKLOG!$G9 is not blank then the cell that
holds this formula will return the value of cell BUDGET!$D$19.

Blank should not be confused with empty.

Biff

"Denny Crane" wrote in message
...
What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a
third
sheet containing a sell with this formula




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
paul
 
Posts: n/a
Default Help with this formula please!

this should have stayed in the original post below
--
paul
remove nospam for email addy!



"Denny Crane" wrote:

What does ."", in the following mean
=If(isblank(CKLOG!$G9),"",BUDGET!$D$19)

I want -if, CKLOG!$G9 is blank, that BUDGET!$D$19 is not copied to a third
sheet containing a sell with this formula

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
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


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