Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formula help requested

Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. What I need is a formula that will provide me the
dollar amount spent on a product in a given year. I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. I
really hope I've explained this well enough. Here's a small example
of the sheet.


apples LA SH 11/20/2007 $1,464.00
oranges MT LS 12/3/2007 $972.00
cherrys IN OEP SH 1/24/2008 $662.40


Thanks in advance for any help.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Formula help requested

=SUMPRODUCT(--(rng_product="SH"),--(YEAR(rng_dates)=2008),rng_Dollars)

--
__________________________________
HTH

Bob

wrote in message
...
Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. What I need is a formula that will provide me the
dollar amount spent on a product in a given year. I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. I
really hope I've explained this well enough. Here's a small example
of the sheet.


apples LA SH 11/20/2007 $1,464.00
oranges MT LS 12/3/2007 $972.00
cherrys IN OEP SH 1/24/2008 $662.40


Thanks in advance for any help.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formula help requested

On Jun 24, 3:51 pm, "Bob Phillips" wrote:
=SUMPRODUCT(--(rng_product="SH"),--(YEAR(rng_dates)=2008),rng_Dollars)

--
__________________________________
HTH

Bob

wrote in message

...

Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. What I need is a formula that will provide me the
dollar amount spent on a product in a given year. I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. I
really hope I've explained this well enough. Here's a small example
of the sheet.


apples LA SH 11/20/2007 $1,464.00
oranges MT LS 12/3/2007 $972.00
cherrys IN OEP SH 1/24/2008 $662.40


Thanks in advance for any help.


Thanks for the reply Bob. However what you proposed won't work. I
should have noticed it when I posted, but the SH & LS are the initials
of the sales person.
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Formula help requested

So what do you need instead?

--
__________________________________
HTH

Bob

wrote in message
...
On Jun 24, 3:51 pm, "Bob Phillips" wrote:
=SUMPRODUCT(--(rng_product="SH"),--(YEAR(rng_dates)=2008),rng_Dollars)

--
__________________________________
HTH

Bob

wrote in message

...

Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. What I need is a formula that will provide me the
dollar amount spent on a product in a given year. I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. I
really hope I've explained this well enough. Here's a small example
of the sheet.


apples LA SH 11/20/2007 $1,464.00
oranges MT LS 12/3/2007 $972.00
cherrys IN OEP SH 1/24/2008 $662.40


Thanks in advance for any help.


Thanks for the reply Bob. However what you proposed won't work. I
should have noticed it when I posted, but the SH & LS are the initials
of the sales person.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formula help requested

I need a formula that is able to total the dollar value of a specific
product sold in the course of a specific year. There are up to 5
different products that can be sold, so for example purposes the
products that can be sold are Apples, Oranges, Cherrys, Lemons, and
Grapes. This started back in August 2007 and it will run for many
years to come. For instance I need to know the total dollar amount of
apples sold in 2007. So, when 2009 comes around I'll need the formula
able to be changed to total up the same info as in 2008 & 2007, but to
not include those years in the totals. Hope this sheds more light on
my situation.

Thanks again.

On Jun 25, 3:16*am, "Bob Phillips" wrote:
So what do you need instead?

--
__________________________________
HTH

Bob

wrote in message

...



On Jun 24, 3:51 pm, "Bob Phillips" wrote:
=SUMPRODUCT(--(rng_product="SH"),--(YEAR(rng_dates)=2008),rng_Dollars)


--
__________________________________
HTH


Bob


wrote in message


....


Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. *This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. *What I need is a formula that will provide me the
dollar amount spent on a product in a given year. *I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. *I
really hope I've explained this well enough. *Here's a small example
of the sheet.


apples * LA * * * * * *SH *11/20/2007 *$1,464.00
oranges MT * * * * * *LS *12/3/2007 * *$972.00
cherrys *IN * OEP * SH * 1/24/2008 * $662.40


Thanks in advance for any help.


Thanks for the reply Bob. *However what you proposed won't work. *I
should have noticed it when I posted, but the SH & LS are the initials
of the sales person.- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Formula help requested

So isn't it just

=SUMPRODUCT(--(rng_product="Apples"),--(YEAR(rng_dates)=2008),rng_Dollars)


--
__________________________________
HTH

Bob

wrote in message
...
I need a formula that is able to total the dollar value of a specific
product sold in the course of a specific year. There are up to 5
different products that can be sold, so for example purposes the
products that can be sold are Apples, Oranges, Cherrys, Lemons, and
Grapes. This started back in August 2007 and it will run for many
years to come. For instance I need to know the total dollar amount of
apples sold in 2007. So, when 2009 comes around I'll need the formula
able to be changed to total up the same info as in 2008 & 2007, but to
not include those years in the totals. Hope this sheds more light on
my situation.

Thanks again.

On Jun 25, 3:16 am, "Bob Phillips" wrote:
So what do you need instead?

--
__________________________________
HTH

Bob

wrote in message

...



On Jun 24, 3:51 pm, "Bob Phillips" wrote:
=SUMPRODUCT(--(rng_product="SH"),--(YEAR(rng_dates)=2008),rng_Dollars)


--
__________________________________
HTH


Bob


wrote in message


...


Hey everyone, I really need someone to help me out with a formula.
I've got 3 columns, Product, Date, and Dollar Amount. This sheet is
tracking everything since 2007 and it's going to end up running well
into the future. What I need is a formula that will provide me the
dollar amount spent on a product in a given year. I've tried
variations of a =sumif(and formula, but have been unable to get
anything even remotely resembling a formula that's functional. I
really hope I've explained this well enough. Here's a small example
of the sheet.


apples LA SH 11/20/2007 $1,464.00
oranges MT LS 12/3/2007 $972.00
cherrys IN OEP SH 1/24/2008 $662.40


Thanks in advance for any help.


Thanks for the reply Bob. However what you proposed won't work. I
should have noticed it when I posted, but the SH & LS are the initials
of the sales person.- Hide quoted text -


- Show quoted text -



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
sum if formula help requested Ann Excel Worksheet Functions 4 June 25th 07 10:16 PM
A challenge, Serious help requested dps9460 New Users to Excel 11 June 3rd 06 09:46 PM
Help Requested on Formula Rich Rosier Excel Worksheet Functions 4 April 2nd 06 09:07 PM
VB syntax help requested anny Excel Worksheet Functions 2 January 27th 06 03:16 AM
Help requested (quite long!) Lee Davison Excel Discussion (Misc queries) 7 April 13th 05 02:23 PM


All times are GMT +1. The time now is 03:30 PM.

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"