Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Charting a range of data

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Charting a range of data

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Charting a range of data

1) AUGUST is present in Column A, as well as several rows within that column
2) the numbers are present in Column X, all rows.

"Barb Reinhardt" wrote:

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Charting a range of data

I'm going to assume that you have August as a text string. If that's not
true, this may need modification

=SUMPRODUCT(--(A1:A100="August"),--(X1:X1001),--(X1:X100<100))

--
HTH,
Barb Reinhardt



"srain001" wrote:

1) AUGUST is present in Column A, as well as several rows within that column
2) the numbers are present in Column X, all rows.

"Barb Reinhardt" wrote:

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Charting a range of data


For some reason ,it's not working. I keep getting a value of zero in the
cell, even though the columns are correct and there are values in the cells.
Here's what I'm inputting:
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(X1:X3501),--(X1:X350<1000))

Help!
srain

"Barb Reinhardt" wrote:

I'm going to assume that you have August as a text string. If that's not
true, this may need modification

=SUMPRODUCT(--(A1:A100="August"),--(X1:X1001),--(X1:X100<100))

--
HTH,
Barb Reinhardt



"srain001" wrote:

1) AUGUST is present in Column A, as well as several rows within that column
2) the numbers are present in Column X, all rows.

"Barb Reinhardt" wrote:

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Charting a range of data

Try splitting it apart to see if you can find the problems

=SUMPRODUCT(--(Figures!A1:A350="AUGUST"))
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(Figures!X1:X3501))
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(Figures!X1:X3501),--(Figures!X1:X350<1000))

--
HTH,
Barb Reinhardt



"srain001" wrote:


For some reason ,it's not working. I keep getting a value of zero in the
cell, even though the columns are correct and there are values in the cells.
Here's what I'm inputting:
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(X1:X3501),--(X1:X350<1000))

Help!
srain

"Barb Reinhardt" wrote:

I'm going to assume that you have August as a text string. If that's not
true, this may need modification

=SUMPRODUCT(--(A1:A100="August"),--(X1:X1001),--(X1:X100<100))

--
HTH,
Barb Reinhardt



"srain001" wrote:

1) AUGUST is present in Column A, as well as several rows within that column
2) the numbers are present in Column X, all rows.

"Barb Reinhardt" wrote:

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Charting a range of data

Thanx for your help! It works now!
Cheers!
Srain

"Barb Reinhardt" wrote:

Try splitting it apart to see if you can find the problems

=SUMPRODUCT(--(Figures!A1:A350="AUGUST"))
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(Figures!X1:X3501))
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(Figures!X1:X3501),--(Figures!X1:X350<1000))

--
HTH,
Barb Reinhardt



"srain001" wrote:


For some reason ,it's not working. I keep getting a value of zero in the
cell, even though the columns are correct and there are values in the cells.
Here's what I'm inputting:
=SUMPRODUCT(--(Figures!A1:A350="AUGUST"),--(X1:X3501),--(X1:X350<1000))

Help!
srain

"Barb Reinhardt" wrote:

I'm going to assume that you have August as a text string. If that's not
true, this may need modification

=SUMPRODUCT(--(A1:A100="August"),--(X1:X1001),--(X1:X100<100))

--
HTH,
Barb Reinhardt



"srain001" wrote:

1) AUGUST is present in Column A, as well as several rows within that column
2) the numbers are present in Column X, all rows.

"Barb Reinhardt" wrote:

I probably won't be able to get back until tomorrow, but here are my questions:

1) What rows/columns might August be present?
2) What rows/Columns might the numbers be present?

Thanks,

Barb Reinhardt



"srain001" wrote:

Thanx! That helps me some. however, I'm now looking for a way to be able to
do the same thing, but capture the values when they're in a certain row. For
example, I'd like to capture the number of cells with values between 1-100 in
any row in which AUGUST appears.

Help!
srain

"Barb Reinhardt" wrote:

Let's say the cells you are checking are A1:A100 and you want the count of
cells 1 and < 100.

=SUMPRODUCT(--(A1:A1001),--(A1:A100<100))
--
HTH,
Barb Reinhardt



"srain001" wrote:

How do I create a formula which can tell me how many cells fall between a
certain value? For example, I need a formula which lets me know how many
cells in a column have a value between 1-100, 100-200, 200-300, and so on.

Any help would be appreciated.

Thanx
srain

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
Dynamic Range Names / Charting fritz78 Excel Discussion (Misc queries) 1 October 10th 07 01:26 AM
Defining maximum value from a named range for charting purposes Barb Reinhardt Charts and Charting in Excel 2 March 8th 06 04:11 PM
Charting data points and show a target range on the same chart. Minireefkeeper Charts and Charting in Excel 6 February 18th 06 06:50 PM
Charting only Used Range with Named Ranges cooter24 Charts and Charting in Excel 3 January 27th 06 03:00 AM
charting data across a range of worksheets Rikki Ward Charts and Charting in Excel 2 December 2nd 05 05:49 PM


All times are GMT +1. The time now is 08:05 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"