Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default Excel Value Error

My formula is =c7*c8 works as long as c7 is not a blank. If made a blank
after being a number, then Value error occurs. How do I do properly?
Please. Example
1*100=100, blank*100=Value error.
--
Jim Finecey
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default Excel Value Error

Try this:

=N(C7)*C8

--
Biff
Microsoft Excel MVP


"Jim Finecey" wrote in message
...
My formula is =c7*c8 works as long as c7 is not a blank. If made a blank
after being a number, then Value error occurs. How do I do properly?
Please. Example
1*100=100, blank*100=Value error.
--
Jim Finecey



  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 964
Default Excel Value Error

If it is a blank because you have a formula in that cell than that what is
expected

and if course if it is not a formula than it must be a space which is also
text so stop
using that, clear the cell of all contents

You could use

=PRODUCT(C7:C8)

which will ignore text but it will also not return zero if C7 is text or
empty

=IF(C7="",0,C7*C8)

will also work






--


Regards,


Peo Sjoblom

"Jim Finecey" wrote in message
...
My formula is =c7*c8 works as long as c7 is not a blank. If made a blank
after being a number, then Value error occurs. How do I do properly?
Please. Example
1*100=100, blank*100=Value error.
--
Jim Finecey



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,344
Default Excel Value Error

Hi,

There's something in the cell, one solution is
=If(ISNUMBER(C7),C7*C8,"")
or
=IF(ISTEXT(C7),"",C7*C8)

If you use the PRODUCT solution this formula will return something that
really doesn't make sense, the value of C8. I wouldn't recommend that, too
dangerous. But I know Peo is playing! In which case you could use the more
useful function =SUMPRODUCT(C7:C8), but don't!

But I do agree with Peo, you should clear the cell by pressing Del, not by
typing spacebar, Enter. In fact that can cause major headaches, ones that
can be difficult for users to find, and worse they may not realize they are
there and effecting formulas results.

--
Thanks,
Shane Devenshire


"Jim Finecey" wrote:

My formula is =c7*c8 works as long as c7 is not a blank. If made a blank
after being a number, then Value error occurs. How do I do properly?
Please. Example
1*100=100, blank*100=Value error.
--
Jim Finecey

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
Error: "Excel encountered an error and had to remove some formatti Carl Excel Discussion (Misc queries) 0 September 18th 06 06:39 PM
Counting instances of found text (Excel error? Or user error?) S Davis Excel Worksheet Functions 5 September 12th 06 04:52 PM
Excel 2003 Macro Error - Runtime error 1004 Cow Excel Discussion (Misc queries) 2 June 7th 05 01:40 PM
Downloading Templates for Excel error with a windows error. Lanie Moore Excel Discussion (Misc queries) 0 December 20th 04 11:39 PM


All times are GMT +1. The time now is 01:21 PM.

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"