#1   Report Post  
Posted to microsoft.public.excel.misc
MAK MAK is offline
external usenet poster
 
Posts: 20
Default #VALUE

I have entered lot's of IF formulas. These formulas are again source for
further calculation in another formula. But if the earlier IF formula result
is a blank cell, the current formula cell displays #VALUE!. It considers the
formula as non-blank cell. How do I address this problem.

To elaborate, Please Relax and See Below. Though I have not mentioned all
formula cells to keep it less complicated.

Column E Row 1 is a date entered manually
Column F Row 1 is an amount entered manually

Column E Row 19 is again a date copied from Column E Row 1
Column F Row 19 is a formula =IF(TODAY()=E19,F6+H6,"")

IT works Fine until here.

The actual problem is as follows.,

Column H Row 19 is a formula =IF(VALUE("F19")<"",F19-F6,"")

If Column F Row 19 has an amount, the above formula works fine.
BUT if Column F Row 19 is blank, then Column H Row 19 displays #VALUE!
Since I already have a formula in Column F Row 19, it is not considering the
cell as blank and so the result is an error.

I need to know what should I do to get a blank in Column H Row 19 if Column
F Row 19 is actually blank ?

I would really appreciate if someone could help me sort this.

Thanks and Regards


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default #VALUE

I don't know what you are trying to achieve with
=IF(VALUE("F19")<"",F19-F6,""), but of course VALUE("F19") returns the
#VALUE! error as "F19" is a string.
Perhaps you intended =IF(F19<"",F19-F6,"") or =IF(ISNUMBER(F19),F19-F6,"")
?
--
David Biddulph


"MAK" wrote in message
...
I have entered lot's of IF formulas. These formulas are again source for
further calculation in another formula. But if the earlier IF formula
result
is a blank cell, the current formula cell displays #VALUE!. It considers
the
formula as non-blank cell. How do I address this problem.

To elaborate, Please Relax and See Below. Though I have not mentioned all
formula cells to keep it less complicated.

Column E Row 1 is a date entered manually
Column F Row 1 is an amount entered manually

Column E Row 19 is again a date copied from Column E Row 1
Column F Row 19 is a formula =IF(TODAY()=E19,F6+H6,"")

IT works Fine until here.

The actual problem is as follows.,

Column H Row 19 is a formula =IF(VALUE("F19")<"",F19-F6,"")

If Column F Row 19 has an amount, the above formula works fine.
BUT if Column F Row 19 is blank, then Column H Row 19 displays #VALUE!
Since I already have a formula in Column F Row 19, it is not considering
the
cell as blank and so the result is an error.

I need to know what should I do to get a blank in Column H Row 19 if
Column
F Row 19 is actually blank ?

I would really appreciate if someone could help me sort this.

Thanks and Regards




  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default #VALUE

=IF(VALUE("F19")<"",F19-F6,"") does not give you the intended results as
"F19" is not a valid cell reference but just a text string

Try
=IF(N(F19),F19-F6,"")

--
Jacob


"MAK" wrote:

I have entered lot's of IF formulas. These formulas are again source for
further calculation in another formula. But if the earlier IF formula result
is a blank cell, the current formula cell displays #VALUE!. It considers the
formula as non-blank cell. How do I address this problem.

To elaborate, Please Relax and See Below. Though I have not mentioned all
formula cells to keep it less complicated.

Column E Row 1 is a date entered manually
Column F Row 1 is an amount entered manually

Column E Row 19 is again a date copied from Column E Row 1
Column F Row 19 is a formula =IF(TODAY()=E19,F6+H6,"")

IT works Fine until here.

The actual problem is as follows.,

Column H Row 19 is a formula =IF(VALUE("F19")<"",F19-F6,"")

If Column F Row 19 has an amount, the above formula works fine.
BUT if Column F Row 19 is blank, then Column H Row 19 displays #VALUE!
Since I already have a formula in Column F Row 19, it is not considering the
cell as blank and so the result is an error.

I need to know what should I do to get a blank in Column H Row 19 if Column
F Row 19 is actually blank ?

I would really appreciate if someone could help me sort this.

Thanks and Regards


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



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