Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
benb
 
Posts: n/a
Default SUMPRODUCT more help

I have a column of dates and a corresponding column of values that are
actually functions converting a foreign currency amount into USD. I want to
create a month-to-date total in a single cell by using SUMPRODUCT. What I am
using is:

=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in the dates
array are blank, and there may be a cell in the values array that has an
error because the values are functions themselves. How can I fix this? If I
can assure that none of the cells in the value array have errors will that
make it easier?
  #2   Report Post  
Dave R.
 
Posts: n/a
Default

If any of the cells have VALUE errors, you'll get that message. Blank cells
are OK. If the cell contains some text, you'll be fine with the way your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that are
actually functions converting a foreign currency amount into USD. I want

to
create a month-to-date total in a single cell by using SUMPRODUCT. What I

am
using is:


=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in the

dates
array are blank, and there may be a cell in the values array that has an
error because the values are functions themselves. How can I fix this?

If I
can assure that none of the cells in the value array have errors will that
make it easier?



  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

Personally, I would fix the data and ensure there are no errors there.

--
HTH

-------

Bob Phillips
"Dave R." wrote in message
...
If any of the cells have VALUE errors, you'll get that message. Blank

cells
are OK. If the cell contains some text, you'll be fine with the way your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that are
actually functions converting a foreign currency amount into USD. I

want
to
create a month-to-date total in a single cell by using SUMPRODUCT. What

I
am
using is:



=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in the

dates
array are blank, and there may be a cell in the values array that has an
error because the values are functions themselves. How can I fix this?

If I
can assure that none of the cells in the value array have errors will

that
make it easier?





  #4   Report Post  
benb
 
Posts: n/a
Default

There are no errors, but I am still coming up with the #VALUE! error message
using SUMPRODUCT(). I've tried a few things, changing the formula and using
a dummy dataset, but I couldn't figure out why I was getting the error.
Fortunately I found a SUMIF variation that worked instead, but I'm still
curious what's causing the error in SUMPRODUCT.

"Bob Phillips" wrote:

Personally, I would fix the data and ensure there are no errors there.

--
HTH

-------

Bob Phillips
"Dave R." wrote in message
...
If any of the cells have VALUE errors, you'll get that message. Blank

cells
are OK. If the cell contains some text, you'll be fine with the way your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that are
actually functions converting a foreign currency amount into USD. I

want
to
create a month-to-date total in a single cell by using SUMPRODUCT. What

I
am
using is:



=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in the

dates
array are blank, and there may be a cell in the values array that has an
error because the values are functions themselves. How can I fix this?

If I
can assure that none of the cells in the value array have errors will

that
make it easier?






  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default

Show us the SUMIF variation that works, and we might be able to figure it.

--
HTH

Bob Phillips

"benb" wrote in message
...
There are no errors, but I am still coming up with the #VALUE! error

message
using SUMPRODUCT(). I've tried a few things, changing the formula and

using
a dummy dataset, but I couldn't figure out why I was getting the error.
Fortunately I found a SUMIF variation that worked instead, but I'm still
curious what's causing the error in SUMPRODUCT.

"Bob Phillips" wrote:

Personally, I would fix the data and ensure there are no errors there.

--
HTH

-------

Bob Phillips
"Dave R." wrote in message
...
If any of the cells have VALUE errors, you'll get that message. Blank

cells
are OK. If the cell contains some text, you'll be fine with the way

your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that

are
actually functions converting a foreign currency amount into USD. I

want
to
create a month-to-date total in a single cell by using SUMPRODUCT.

What
I
am
using is:




=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in

the
dates
array are blank, and there may be a cell in the values array that

has an
error because the values are functions themselves. How can I fix

this?
If I
can assure that none of the cells in the value array have errors

will
that
make it easier?









  #6   Report Post  
JBoulton
 
Posts: n/a
Default

You'll get that error if your arrays contain a non-numeric header. If row 15
contains the name of your field, for example.

"Bob Phillips" wrote:

Show us the SUMIF variation that works, and we might be able to figure it.

--
HTH

Bob Phillips

"benb" wrote in message
...
There are no errors, but I am still coming up with the #VALUE! error

message
using SUMPRODUCT(). I've tried a few things, changing the formula and

using
a dummy dataset, but I couldn't figure out why I was getting the error.
Fortunately I found a SUMIF variation that worked instead, but I'm still
curious what's causing the error in SUMPRODUCT.

"Bob Phillips" wrote:

Personally, I would fix the data and ensure there are no errors there.

--
HTH

-------

Bob Phillips
"Dave R." wrote in message
...
If any of the cells have VALUE errors, you'll get that message. Blank
cells
are OK. If the cell contains some text, you'll be fine with the way

your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that

are
actually functions converting a foreign currency amount into USD. I
want
to
create a month-to-date total in a single cell by using SUMPRODUCT.

What
I
am
using is:




=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in

the
dates
array are blank, and there may be a cell in the values array that

has an
error because the values are functions themselves. How can I fix

this?
If I
can assure that none of the cells in the value array have errors

will
that
make it easier?








  #7   Report Post  
benb
 
Posts: n/a
Default

Someone suggested using =SUMIF(A:A,""&(TODAY()-DAY(TODAY())),B:B)

I adapted that into
=SUMPRODUCT(--($A$15:$A$1000($Z$7-DAY($Z$7))),--($A$15:$A$1000<=$Z$7),Z$15:Z$1000)

This version worked. Something in the MONTH() and YEAR() was giving me the
#VALUE! error. I thought it might be the headers, but when I excluded those
from the array I still got the error. The experience has been worthwhile
though because it's forced me to learn much more about SUMPRODUCT.

"Bob Phillips" wrote:

Show us the SUMIF variation that works, and we might be able to figure it.

--
HTH

Bob Phillips

"benb" wrote in message
...
There are no errors, but I am still coming up with the #VALUE! error

message
using SUMPRODUCT(). I've tried a few things, changing the formula and

using
a dummy dataset, but I couldn't figure out why I was getting the error.
Fortunately I found a SUMIF variation that worked instead, but I'm still
curious what's causing the error in SUMPRODUCT.

"Bob Phillips" wrote:

Personally, I would fix the data and ensure there are no errors there.

--
HTH

-------

Bob Phillips
"Dave R." wrote in message
...
If any of the cells have VALUE errors, you'll get that message. Blank
cells
are OK. If the cell contains some text, you'll be fine with the way

your
formula is written.

You can count error messages in a range with;

=SUMPRODUCT(--ISERROR(A1:A100))


"benb" wrote in message
...
I have a column of dates and a corresponding column of values that

are
actually functions converting a foreign currency amount into USD. I
want
to
create a month-to-date total in a single cell by using SUMPRODUCT.

What
I
am
using is:




=SUMPRODUCT(--(YEAR($A$15:$A$1000)=YEAR($C$7)),--(MONTH($A$15:$A$1000)=MONTH
($C$7)),$B$15:$B$1000)

But I am getting the #VALUE! error message. Some of the cells in

the
dates
array are blank, and there may be a cell in the values array that

has an
error because the values are functions themselves. How can I fix

this?
If I
can assure that none of the cells in the value array have errors

will
that
make it easier?








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
Another Sumproduct & #N/A problem Dave Davis Excel Worksheet Functions 3 January 10th 05 03:59 PM
SUMPRODUCT Gerrym Excel Worksheet Functions 1 January 4th 05 11:48 AM
Sumproduct ... Empty Cells vs Spaces? Ken Excel Discussion (Misc queries) 9 December 17th 04 08:03 PM
Sumproduct function not working Scott Summerlin Excel Worksheet Functions 12 December 4th 04 05:15 AM
adding two sumproduct formulas together ski2004_2005 Excel Worksheet Functions 1 November 12th 04 09:08 PM


All times are GMT +1. The time now is 10:54 AM.

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"