Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

First let me say thanks to Rob. This formula works great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

No tsure what you are doing, but have you tried a pivot table?
"mary" wrote in message
...
First let me say thanks to Rob. This formula works great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 153
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

Not exactly sure what you have here, but a "=sumif
(Range,"john",Range), might do the trick.
-----Original Message-----
First let me say thanks to Rob. This formula works

great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.
.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 634
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

There is no problem in summing cells that have formulas in them, but I'll bet
that you are summing them in this manner:-

=C1+C2+C3+C4+C5+C6+C7.............

This will not work because of the "" being returned by some of the formulas.

Change your formula to =SUM(C1:C100) or whatever the ranges are and it will
work.

You can use Davids reply though, in that you don't actually need your 'helper'
column with all your formulas. You can do all that and SUM the results with a
single formula in a single cell, eg:-

=SUMIF(A1:A100,"John",B1:B100)

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------



"mary" wrote in message
...
First let me say thanks to Rob. This formula works great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date: 08/01/2004


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

I am using the =SUM(C1:C100)
-----Original Message-----
There is no problem in summing cells that have formulas

in them, but I'll bet
that you are summing them in this manner:-

=C1+C2+C3+C4+C5+C6+C7.............

This will not work because of the "" being returned by

some of the formulas.

Change your formula to =SUM(C1:C100) or whatever the

ranges are and it will
work.

You can use Davids reply though, in that you don't

actually need your 'helper'
column with all your formulas. You can do all that and

SUM the results with a
single formula in a single cell, eg:-

=SUMIF(A1:A100,"John",B1:B100)

--
Regards
Ken....................... Microsoft MVP -

Excel
Sys Spec - Win XP Pro / XL 00/02/03

---------------------------------------------------------

-------------------
It's easier to beg forgiveness than ask permission :-)
---------------------------------------------------------

-------------------



"mary" wrote in message
...
First let me say thanks to Rob. This formula works

great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am

adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system

(http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date:

08/01/2004


.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 634
Default TO ROB and anyone=IF(LOWER(A1)="john",B1,"")

Do you have any cells in that range with an error in them, eg #VALUE, #N/A, #NUM
etc

Feel free to mail me a copy of the workbook, or even a copy of just that range
if you prefer and I'll happily take a quick look. You would need to take the
NOSPAM bit out of my email address.

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------



"mary" wrote in message
...
I am using the =SUM(C1:C100)
-----Original Message-----
There is no problem in summing cells that have formulas

in them, but I'll bet
that you are summing them in this manner:-

=C1+C2+C3+C4+C5+C6+C7.............

This will not work because of the "" being returned by

some of the formulas.

Change your formula to =SUM(C1:C100) or whatever the

ranges are and it will
work.

You can use Davids reply though, in that you don't

actually need your 'helper'
column with all your formulas. You can do all that and

SUM the results with a
single formula in a single cell, eg:-

=SUMIF(A1:A100,"John",B1:B100)

--
Regards
Ken....................... Microsoft MVP -

Excel
Sys Spec - Win XP Pro / XL 00/02/03

---------------------------------------------------------

-------------------
It's easier to beg forgiveness than ask permission :-)
---------------------------------------------------------

-------------------



"mary" wrote in message
...
First let me say thanks to Rob. This formula works

great,
except i need to add all the entries AFTER THIS FORMULA
HAS COLLETED THESE ENTRIES. EXAMPLE: ENTRIES OF
all "john". When i attempt to sum all the entries i am
getting an error message. Basically, because i am

adding
up formula cells. Is there a macro that call sum up all
the value of a formula cells.
Thanks again ROB AND ANYONE THAT CAN HELP.



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system

(http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date:

08/01/2004


.



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.562 / Virus Database: 354 - Release Date: 16/01/2004


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
Converting "uppercase" string data to "lower case" in CSV file [email protected] Excel Discussion (Misc queries) 2 August 12th 08 08:36 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
How do I change "Doe, John" to "John Doe" in Excel? Moon Excel Discussion (Misc queries) 3 November 10th 05 03:34 PM


All times are GMT +1. The time now is 08:23 AM.

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"