Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Error: "Excel encountered an error and had to remove some formatti | Excel Discussion (Misc queries) | |||
Counting instances of found text (Excel error? Or user error?) | Excel Worksheet Functions | |||
Excel 2003 Macro Error - Runtime error 1004 | Excel Discussion (Misc queries) | |||
Downloading Templates for Excel error with a windows error. | Excel Discussion (Misc queries) |