Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I looked at the #DIV/0! theme but there were too many technical words for me
to understand. I hope someone can help me with this one. I am trying to breakdown the percentage of four types of house (A, B, C AND D) built on two different plots (X and Y). There is no 'B type' house on plots X and Y. The result should be "0" but instead it says "#DIV/0!". This is my formula:- =SUM(K133/B102*100) What should I type instead? I need it to say "0". Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(B102=0,0,(K133/B102)*100)
-- Regards, Peo Sjoblom "ian_s_mcd" wrote in message ... I looked at the #DIV/0! theme but there were too many technical words for me to understand. I hope someone can help me with this one. I am trying to breakdown the percentage of four types of house (A, B, C AND D) built on two different plots (X and Y). There is no 'B type' house on plots X and Y. The result should be "0" but instead it says "#DIV/0!". This is my formula:- =SUM(K133/B102*100) What should I type instead? I need it to say "0". Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try something like this:
=IF(N(B102)<0,K133/B102*100,0) Does that help? *********** Regards, Ron XL2002, WinXP "ian_s_mcd" wrote: I looked at the #DIV/0! theme but there were too many technical words for me to understand. I hope someone can help me with this one. I am trying to breakdown the percentage of four types of house (A, B, C AND D) built on two different plots (X and Y). There is no 'B type' house on plots X and Y. The result should be "0" but instead it says "#DIV/0!". This is my formula:- =SUM(K133/B102*100) What should I type instead? I need it to say "0". Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this idea
=if(TRIM(b102)="",0,k133/b102) -- Don Guillett SalesAid Software "ian_s_mcd" wrote in message ... I looked at the #DIV/0! theme but there were too many technical words for me to understand. I hope someone can help me with this one. I am trying to breakdown the percentage of four types of house (A, B, C AND D) built on two different plots (X and Y). There is no 'B type' house on plots X and Y. The result should be "0" but instead it says "#DIV/0!". This is my formula:- =SUM(K133/B102*100) What should I type instead? I need it to say "0". Thanks. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
type 0.0001 and the error sign should disappear.
"ian_s_mcd" wrote: I looked at the #DIV/0! theme but there were too many technical words for me to understand. I hope someone can help me with this one. I am trying to breakdown the percentage of four types of house (A, B, C AND D) built on two different plots (X and Y). There is no 'B type' house on plots X and Y. The result should be "0" but instead it says "#DIV/0!". This is my formula:- =SUM(K133/B102*100) What should I type instead? I need it to say "0". Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
create links to check boxes marked "good" fair"and "bad" | Excel Worksheet Functions | |||
Complex if test program possible? If "value" "value", paste "value" in another cell? | Excel Discussion (Misc queries) | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |