Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Example:
H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(OR(H10="",(I10="")),"",H10+I10)
Will show blank if either cell has no value. Gord Dibben MS Excel MVP On Sun, 30 Sep 2007 08:03:01 -0700, Killer wrote: Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Apologies, gave you a formula for zero not for blanks that's why is important
listening to The Rain myself. Thanks Gord you became the rain. -- Can''''t hear the Rain ? Then listen to it. "Gord Dibben" wrote: =IF(OR(H10="",(I10="")),"",H10+I10) Will show blank if either cell has no value. Gord Dibben MS Excel MVP On Sun, 30 Sep 2007 08:03:01 -0700, Killer wrote: Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=(H10+I10)*(I100)
Entered in the result cell. -- Can''''t hear the Rain ? Then listen to it. "Killer" wrote: Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(COUNT(H10:I10)=2,H10+I10,"")
"Killer" wrote: Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(COUNT(H10,I10)=2,H10+I10,"")
-- David Biddulph "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks guys for the help but I'm still getting a result if Column I10 has no
result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") -- David Biddulph "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Did you look at my earlier post?
=IF(OR(H10="",(I10="")),"",H10+I10) Will show blank if either cell is empty. Gord Dibben MS Excel MVP On Sun, 30 Sep 2007 13:33:05 -0700, Killer wrote: Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") -- David Biddulph "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes i gave this a try and it's still showing a data.
G10 has this formula =IF(COUNT(F10,G10)=2,F10+G10,"") I10 has this forumla =SUMIF('W5'!$B$10:$B$49,$B8,'W5'!$AN$10:$AN$49) J10 has this formula =IF(OR(H10="",(I10="")),"",H10+I10) Would the formula be the problem? "Gord Dibben" wrote: Did you look at my earlier post? =IF(OR(H10="",(I10="")),"",H10+I10) Will show blank if either cell is empty. Gord Dibben MS Excel MVP On Sun, 30 Sep 2007 13:33:05 -0700, Killer wrote: Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") -- David Biddulph "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hey David
Thanks for the help but I have tried everything! If you like maybe you can take alook and see if I'm missing something... http://nghl.ca/Football_Pool.xls Look under Mater tab you'll see weeks from 1 -17 weeks... Thanks again! "Killer" wrote: Yes i gave this a try and it's still showing a data. G10 has this formula =IF(COUNT(F10,G10)=2,F10+G10,"") I10 has this forumla =SUMIF('W5'!$B$10:$B$49,$B8,'W5'!$AN$10:$AN$49) J10 has this formula =IF(OR(H10="",(I10="")),"",H10+I10) Would the formula be the problem? "Gord Dibben" wrote: Did you look at my earlier post? =IF(OR(H10="",(I10="")),"",H10+I10) Will show blank if either cell is empty. Gord Dibben MS Excel MVP On Sun, 30 Sep 2007 13:33:05 -0700, Killer wrote: Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") -- David Biddulph "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you're trying to tell us that I10 doesn't have a number but you're not
seeing a blank in the result, then you've either got the formula wrong, or a problem with your calculation mode. Tools/ Options/ Calculation, set it to Automatic not Manual. -- David Biddulph "Killer" wrote in message ... Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes the Calculation are on automatic not manual.
"David Biddulph" wrote: If you're trying to tell us that I10 doesn't have a number but you're not seeing a blank in the result, then you've either got the formula wrong, or a problem with your calculation mode. Tools/ Options/ Calculation, set it to Automatic not Manual. -- David Biddulph "Killer" wrote in message ... Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So the likelihood is that your formula is wrong. Tell us what formula you
have (copy & paste, don't retype), what result you are getting, and what values are in the input cells. If you are getting a result from the formula dependent on the condition =IF(COUNT(H10,I10)=2,... then set up an extra cell to see what result you get from =COUNT(H10,I10), and if you can't see numbers in both H10 and I10, check that you haven't got values which are invisible because of formatting (either base formatting or conditional formatting). -- David Biddulph "Killer" wrote in message ... Yes the Calculation are on automatic not manual. "David Biddulph" wrote: If you're trying to tell us that I10 doesn't have a number but you're not seeing a blank in the result, then you've either got the formula wrong, or a problem with your calculation mode. Tools/ Options/ Calculation, set it to Automatic not Manual. -- David Biddulph "Killer" wrote in message ... Thanks guys for the help but I'm still getting a result if Column I10 has no result. There will always be data in H10 but I10 has no result. It keeps showing result from H10! "David Biddulph" wrote: =IF(COUNT(H10,I10)=2,H10+I10,"") "Killer" wrote in message ... Example: H10 = 12 I10 = Blank Result should be left blank If H10 = 12 I10 = 8 Result should be 20 Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Question For Importing Data Into Excel/Converting General Number to Dollar Amount | Excel Discussion (Misc queries) | |||
ENTER NEGATIVE AMOUNT | Excel Discussion (Misc queries) | |||
when I enter an amount in the A column move the row to another she | Excel Worksheet Functions | |||
when i enter a dollar amount of 18.40 into excel it drops the 0 | New Users to Excel | |||
How do I enter a negative dollar amount? | Excel Discussion (Misc queries) |