Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm trying to get a percentage from the following formula c10/b10-1, the
problem i'm facing is that c/10 & b10 are zero value - I just want to make it 0%. Any options? Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this...
=IF(OR(B10=0,C10=0),0,C10/B10-1) -- Biff Microsoft Excel MVP "Kmtravel" wrote in message ... I'm trying to get a percentage from the following formula c10/b10-1, the problem i'm facing is that c/10 & b10 are zero value - I just want to make it 0%. Any options? Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
see if this works
=IF(ISERROR(C10/B10-1),0,C10/B10-1) "Kmtravel" wrote: I'm trying to get a percentage from the following formula c10/b10-1, the problem i'm facing is that c/10 & b10 are zero value - I just want to make it 0%. Any options? Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perfect - thank you very much!!
"ck" wrote: see if this works =IF(ISERROR(C10/B10-1),0,C10/B10-1) "Kmtravel" wrote: I'm trying to get a percentage from the following formula c10/b10-1, the problem i'm facing is that c/10 & b10 are zero value - I just want to make it 0%. Any options? Thank you |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Zero values don't give a #VALUE! error in that formula. C10 zero would give
an answer of -1, B10 zero would give a #DIV/0! Either of those can be trapped for. A #VALUE! error would come if you have text in B10 and/or C10. -- David Biddulph "Kmtravel" wrote in message ... I'm trying to get a percentage from the following formula c10/b10-1, the problem i'm facing is that c/10 & b10 are zero value - I just want to make it 0%. Any options? Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - error saving file & error loading dll | Excel Discussion (Misc queries) | |||
Visual Basic Error Run Time Error, Type Mismatch | 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) |