#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default sumproduct help

this formula works fine. however, I am now looking for a way to include the
entire columns ($G, $J, and $V), instead of just the short range, as the
source material so people can add rows to their heart's content, without
having to go back an change the formula. Any help would be greatly
appreciated.

=SUMPRODUCT(('Tracking Sheet - Detail Report'!G2:G34="Claims")*('Tracking
Sheet - Detail Report'!J2:J34=C58)*('Tracking Sheet - Detail
Report'!V2:V34=1))
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default sumproduct help

If you are using 2007; you can refer this as G:G instead of G2:G65535 but
this will not work in 2003...So better go with the below version...(which is
just 1 row less than the max number of rows in 2003)

=SUMPRODUCT(
('Tracking Sheet - Detail Report'!G2:G65535="Claims")*
('Tracking Sheet - Detail Report'!J2:J65535=C58)*
('Tracking Sheet - Detail Report'!V2:V65535=1))

If this post helps click Yes
---------------
Jacob Skaria


"JeffZ88" wrote:

this formula works fine. however, I am now looking for a way to include the
entire columns ($G, $J, and $V), instead of just the short range, as the
source material so people can add rows to their heart's content, without
having to go back an change the formula. Any help would be greatly
appreciated.

=SUMPRODUCT(('Tracking Sheet - Detail Report'!G2:G34="Claims")*('Tracking
Sheet - Detail Report'!J2:J34=C58)*('Tracking Sheet - Detail
Report'!V2:V34=1))

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default sumproduct help

Hi,

You can reference entire columns using J:J type of references. Some
functions do not support these types of references before 2007. You might
also consider range names to make your formula simplier:

If you named column G -- G and column J -- J and V -- V you could
simplify the formula to

=SUMPRODUCT((G="Claims")*(J=C58)*(V=1))

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"JeffZ88" wrote:

this formula works fine. however, I am now looking for a way to include the
entire columns ($G, $J, and $V), instead of just the short range, as the
source material so people can add rows to their heart's content, without
having to go back an change the formula. Any help would be greatly
appreciated.

=SUMPRODUCT(('Tracking Sheet - Detail Report'!G2:G34="Claims")*('Tracking
Sheet - Detail Report'!J2:J34=C58)*('Tracking Sheet - Detail
Report'!V2:V34=1))

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default sumproduct help

You REALLY do NOT want to do that. Instead use a dummy row and have
insertions above it or better yet, use defined names for your ranges
insertnamedefinename colG
in the refers to box
=offset($g$1,1,0,counta($a:$a),1)
look in the help index for OFFSET
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"JeffZ88" wrote in message
...
this formula works fine. however, I am now looking for a way to include
the
entire columns ($G, $J, and $V), instead of just the short range, as the
source material so people can add rows to their heart's content, without
having to go back an change the formula. Any help would be greatly
appreciated.

=SUMPRODUCT(('Tracking Sheet - Detail Report'!G2:G34="Claims")*('Tracking
Sheet - Detail Report'!J2:J34=C58)*('Tracking Sheet - Detail
Report'!V2:V34=1))


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
Sumproduct? Ken Excel Discussion (Misc queries) 5 February 13th 09 10:19 PM
Conditional SUMPRODUCT or SUMPRODUCT with Filters Ted M H Excel Worksheet Functions 4 August 14th 08 07:50 PM
sumproduct? sumif(sumproduct)? David Excel Worksheet Functions 3 July 13th 07 07:06 PM
Sumproduct ceemo Excel Worksheet Functions 3 February 28th 06 09:15 PM
sumproduct Mandy Excel Discussion (Misc queries) 3 February 8th 06 01:25 PM


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