Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default If two Columns have Data enter the Amount Question!

Example:

H10 = 12
I10 = Blank

Result should be left blank

If

H10 = 12
I10 = 8

Result should be 20

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default If two Columns have Data enter the Amount Question!

=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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default If two Columns have Data enter the Amount Question!

=(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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,718
Default If two Columns have Data enter the Amount Question!

=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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default If two Columns have Data enter the Amount Question!

=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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default If two Columns have Data enter the Amount Question!

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default If two Columns have Data enter the Amount Question!

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
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
Question For Importing Data Into Excel/Converting General Number to Dollar Amount [email protected] Excel Discussion (Misc queries) 3 February 12th 07 09:30 PM
ENTER NEGATIVE AMOUNT Anna Excel Discussion (Misc queries) 3 October 27th 06 10:53 AM
when I enter an amount in the A column move the row to another she Jay95 Excel Worksheet Functions 1 May 7th 06 12:26 PM
when i enter a dollar amount of 18.40 into excel it drops the 0 acsnett New Users to Excel 3 August 22nd 05 06:05 PM
How do I enter a negative dollar amount? CML Excel Discussion (Misc queries) 7 February 6th 05 11:19 PM


All times are GMT +1. The time now is 12: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"