WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Need help creating formula to sum tables

 
   Home -> Office -> Worksheet Functions RSS
Next:  Worksheet Functions: Lookup formula & an error to find the match  
Author Message
Darren Ingram

External


Since: Apr 16, 2008
Posts: 10



(Msg. 1) Posted: Sun Aug 03, 2008 12:40 pm
Post subject: Need help creating formula to sum tables Add to elertz
Archived from groups: microsoft>public>excel>worksheet>functions (more info?)

Hi

I have a massive table which has various departments in column C, services
supplied by the departments in column D and the period invoiced in column L.

When I sort by column C, D and L, I am able to calculate the Gross amount
that has been spent for the period by doing a basic SUM of Column Y.

What I want to achieve is to create some drop down options ( 3 drop down
cells) on a new work sheet that allow me to choose the value for column C,D &
L in 3 fields and for another cell to correctly go back to the previous
worksheet and to correctly sort and calculate the overall total value.

I'm not sure how to do this..... Can someone please give me assistance?

Thanks
Back to top
Login to vote
JMB

External


Since: Jun 08, 2005
Posts: 1311



(Msg. 2) Posted: Sun Aug 03, 2008 1:35 pm
Post subject: RE: Need help creating formula to sum tables Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If your dropdown options are in A1:C1, and your data is in a worksheet called
Table, try:

=Sumproduct(--(Table!C1:C100=A1), --(Table!D1:D100=B1),
--(Table!L1:L100=C1), Table!Y1:Y100)

change range references to suit.

"Darren Ingram" wrote:

> Hi
>
> I have a massive table which has various departments in column C, services
> supplied by the departments in column D and the period invoiced in column L.
>
> When I sort by column C, D and L, I am able to calculate the Gross amount
> that has been spent for the period by doing a basic SUM of Column Y.
>
> What I want to achieve is to create some drop down options ( 3 drop down
> cells) on a new work sheet that allow me to choose the value for column C,D &
> L in 3 fields and for another cell to correctly go back to the previous
> worksheet and to correctly sort and calculate the overall total value.
>
> I'm not sure how to do this..... Can someone please give me assistance?
>
> Thanks
Back to top
Login to vote
Piotr

External


Since: Aug 04, 2008
Posts: 1



(Msg. 3) Posted: Mon Aug 04, 2008 5:23 am
Post subject: RE: Need help creating formula to sum tables Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Wow. It does work, however wyhy do I need "--" before the brackets, as the
original formula doesn't have such thing. Just as an explanation, Darren post
it this request on my behalf, which I am really grateful for.

Can I also use this formula to add other conditionals such payment received
or yet to receive just by adding extra range with additional criteria??

Thanks Piotr

"JMB" wrote:

> If your dropdown options are in A1:C1, and your data is in a worksheet called
> Table, try:
>
> =Sumproduct(--(Table!C1:C100=A1), --(Table!D1:D100=B1),
> --(Table!L1:L100=C1), Table!Y1:Y100)
>
> change range references to suit.
>
> "Darren Ingram" wrote:
>
> > Hi
> >
> > I have a massive table which has various departments in column C, services
> > supplied by the departments in column D and the period invoiced in column L.
> >
> > When I sort by column C, D and L, I am able to calculate the Gross amount
> > that has been spent for the period by doing a basic SUM of Column Y.
> >
> > What I want to achieve is to create some drop down options ( 3 drop down
> > cells) on a new work sheet that allow me to choose the value for column C,D &
> > L in 3 fields and for another cell to correctly go back to the previous
> > worksheet and to correctly sort and calculate the overall total value.
> >
> > I'm not sure how to do this..... Can someone please give me assistance?
> >
> > Thanks
Back to top
Login to vote
JMB

External


Since: Jun 08, 2005
Posts: 1311



(Msg. 4) Posted: Wed Aug 06, 2008 6:25 pm
Post subject: RE: Need help creating formula to sum tables Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

the -- converts a true/false value to its underlying numeric value ( 1 for
true, 0 for false). It also converts "text" numbers to numeric values that
can be used in arithmetic operations.

Yes, you can add additional criteria. Be sure the ranges are the same size
as those already in the formula.

One of the best write-ups on sumproduct is on Bob phillips site
Xldynamic.com. At the bottom left of the screen you should see a linke
regarding Multiple Condition Tests. It's well worth the time to read.

Sorry for delayed response - I'm out of town and have limited computer access.
"Piotr (Peter)" wrote:

> Wow. It does work, however wyhy do I need "--" before the brackets, as the
> original formula doesn't have such thing. Just as an explanation, Darren post
> it this request on my behalf, which I am really grateful for.
>
> Can I also use this formula to add other conditionals such payment received
> or yet to receive just by adding extra range with additional criteria??
>
> Thanks Piotr
>
> "JMB" wrote:
>
> > If your dropdown options are in A1:C1, and your data is in a worksheet called
> > Table, try:
> >
> > =Sumproduct(--(Table!C1:C100=A1), --(Table!D1:D100=B1),
> > --(Table!L1:L100=C1), Table!Y1:Y100)
> >
> > change range references to suit.
> >
> > "Darren Ingram" wrote:
> >
> > > Hi
> > >
> > > I have a massive table which has various departments in column C, services
> > > supplied by the departments in column D and the period invoiced in column L.
> > >
> > > When I sort by column C, D and L, I am able to calculate the Gross amount
> > > that has been spent for the period by doing a basic SUM of Column Y.
> > >
> > > What I want to achieve is to create some drop down options ( 3 drop down
> > > cells) on a new work sheet that allow me to choose the value for column C,D &
> > > L in 3 fields and for another cell to correctly go back to the previous
> > > worksheet and to correctly sort and calculate the overall total value.
> > >
> > > I'm not sure how to do this..... Can someone please give me assistance?
> > >
> > > Thanks
Back to top
Login to vote
Piotr

External


Since: Aug 05, 2008
Posts: 7



(Msg. 5) Posted: Wed Aug 06, 2008 9:56 pm
Post subject: RE: Need help creating formula to sum tables Add to elertz [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thank you JMB for your assistance and don't worry about the delay. You have
helped anyway as I achived what I needed. I will certainly read this website
as there is a long way before I will be able to do more complicated things on
my own. Thanks again!!

"JMB" wrote:

> the -- converts a true/false value to its underlying numeric value ( 1 for
> true, 0 for false). It also converts "text" numbers to numeric values that
> can be used in arithmetic operations.
>
> Yes, you can add additional criteria. Be sure the ranges are the same size
> as those already in the formula.
>
> One of the best write-ups on sumproduct is on Bob phillips site
> Xldynamic.com. At the bottom left of the screen you should see a linke
> regarding Multiple Condition Tests. It's well worth the time to read.
>
> Sorry for delayed response - I'm out of town and have limited computer access.
> "Piotr (Peter)" wrote:
>
> > Wow. It does work, however wyhy do I need "--" before the brackets, as the
> > original formula doesn't have such thing. Just as an explanation, Darren post
> > it this request on my behalf, which I am really grateful for.
> >
> > Can I also use this formula to add other conditionals such payment received
> > or yet to receive just by adding extra range with additional criteria??
> >
> > Thanks Piotr
> >
> > "JMB" wrote:
> >
> > > If your dropdown options are in A1:C1, and your data is in a worksheet called
> > > Table, try:
> > >
> > > =Sumproduct(--(Table!C1:C100=A1), --(Table!D1:D100=B1),
> > > --(Table!L1:L100=C1), Table!Y1:Y100)
> > >
> > > change range references to suit.
> > >
> > > "Darren Ingram" wrote:
> > >
> > > > Hi
> > > >
> > > > I have a massive table which has various departments in column C, services
> > > > supplied by the departments in column D and the period invoiced in column L.
> > > >
> > > > When I sort by column C, D and L, I am able to calculate the Gross amount
> > > > that has been spent for the period by doing a basic SUM of Column Y.
> > > >
> > > > What I want to achieve is to create some drop down options ( 3 drop down
> > > > cells) on a new work sheet that allow me to choose the value for column C,D &
> > > > L in 3 fields and for another cell to correctly go back to the previous
> > > > worksheet and to correctly sort and calculate the overall total value.
> > > >
> > > > I'm not sure how to do this..... Can someone please give me assistance?
> > > >
> > > > Thanks
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Worksheet Functions All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET