Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 24
Default Total Dollar Amounts From Different Worksheet

I have on worksheet A, column AJ, the dollar amounts of various items. The
column is continous with different dates, column H, throughout the range.

On worksheet B I want to add the total for a specific month (mm/dd/yyyy),
cell J, from that data input on worksheet A. I use the below formula for
other calculations and it works fine. It just gives me total numbers (i.e.
Opened = 5, Closed = 10):

=SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)))

I need a formula that will calculate/add the total dollar amount (specific
date range) of worksheet A input and be seen on worksheet B ($54,875.45).

Thanks.


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Total Dollar Amounts From Different Worksheet

=SUMPRODUCT(--(TEXT(worksheet
A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),'worksheet A'!B8:B2000)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"roy.okinawa" wrote in message
...
I have on worksheet A, column AJ, the dollar amounts of various items. The
column is continous with different dates, column H, throughout the range.

On worksheet B I want to add the total for a specific month (mm/dd/yyyy),
cell J, from that data input on worksheet A. I use the below formula for
other calculations and it works fine. It just gives me total numbers
(i.e.
Opened = 5, Closed = 10):

=SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)))

I need a formula that will calculate/add the total dollar amount (specific
date range) of worksheet A input and be seen on worksheet B ($54,875.45).

Thanks.




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 24
Default Total Dollar Amounts From Different Worksheet

Is the end B8:B2000 suppsoe to be H8:H2000? Not sure what B is.

"Bob Phillips" wrote:

=SUMPRODUCT(--(TEXT(worksheet
A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),'worksheet A'!B8:B2000)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"roy.okinawa" wrote in message
...
I have on worksheet A, column AJ, the dollar amounts of various items. The
column is continous with different dates, column H, throughout the range.

On worksheet B I want to add the total for a specific month (mm/dd/yyyy),
cell J, from that data input on worksheet A. I use the below formula for
other calculations and it works fine. It just gives me total numbers
(i.e.
Opened = 5, Closed = 10):

=SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)))

I need a formula that will calculate/add the total dollar amount (specific
date range) of worksheet A input and be seen on worksheet B ($54,875.45).

Thanks.





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 24
Default Total Dollar Amounts From Different Worksheet

To clarify just a bit:

If I use this forumula on worksheet B: =SUMPRODUCT(Overall!AJ8:AJ2025) I
get the entire $$ amount for column AJ from Overall worksheet. The date
column H needs to correspond to the $$ amount in column AJ. I need to add to
this forumula so I only get the total for the month entered on worksheet B in
cell J1.

"roy.okinawa" wrote:

Is the end B8:B2000 suppsoe to be H8:H2000? Not sure what B is.

"Bob Phillips" wrote:

=SUMPRODUCT(--(TEXT(worksheet
A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),'worksheet A'!B8:B2000)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"roy.okinawa" wrote in message
...
I have on worksheet A, column AJ, the dollar amounts of various items. The
column is continous with different dates, column H, throughout the range.

On worksheet B I want to add the total for a specific month (mm/dd/yyyy),
cell J, from that data input on worksheet A. I use the below formula for
other calculations and it works fine. It just gives me total numbers
(i.e.
Opened = 5, Closed = 10):

=SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)))

I need a formula that will calculate/add the total dollar amount (specific
date range) of worksheet A input and be seen on worksheet B ($54,875.45).

Thanks.





  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Total Dollar Amounts From Different Worksheet

So it just becomes

=SUMPRODUCT(--(TEXT(Overall!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),Overall!AJ:AJ2000)--HTHBob(there's no email, no snail mail, but somewhere should be gmail in my addy)"roy.okinawa" wrote in ... To clarify just a bit: If I use this forumula on worksheet B: =SUMPRODUCT(Overall!AJ8:AJ2025) I get the entire $$ amount for column AJ from Overall worksheet. The date column H needs to correspond to the $$ amount in column AJ. I need to addto this forumula so I only get the total for the month entered on worksheet Bin cell J1. "roy.okinawa" wrote: Is the end B8:B2000 suppsoe to be H8:H2000? Not sure what B is. "Bob Phillips" wrote: =SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),'worksheet A'!B8:B2000) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in myaddy) "roy.okinawa" wrote in message ... I have on worksheet A, column AJ, the dollar amounts of various items.The column is continous with different dates, column H, throughout therange. On worksheet B I want to add the total for a specific month(mm/dd/yyyy), cell J, from that data input on worksheet A. I use the below formulafor other calculations and it works fine. It just gives me total numbers (i.e. Opened = 5, Closed = 10): =SUMPRODUCT(--(TEXT(worksheetA!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy))) I need a formula that will calculate/add the total dollar amount(specific date range) of worksheet A input and be seen on worksheet B($54,875.45). Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 24
Default Total Dollar Amounts From Different Worksheet

Bob, thanks. That solved the problem.

"Bob Phillips" wrote:

So it just becomes

=SUMPRODUCT(--(TEXT(Overall!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),Overall!AJ:AJ2000)--HTHBob(there's no email, no snail mail, but somewhere should be gmail in my addy)"roy.okinawa" wrote in ... To clarify just a bit: If I use this forumula on worksheet B: =SUMPRODUCT(Overall!AJ8:AJ2025) I get the entire $$ amount for column AJ from Overall worksheet. The date column H needs to correspond to the $$ amount in column AJ. I need to addto this forumula so I only get the total for the month entered on worksheet Bin cell J1. "roy.okinawa" wrote: Is the end B8:B2000 suppsoe to be H8:H2000? Not sure what B is. "Bob Phillips" wrote: =SUMPRODUCT(--(TEXT(worksheet A!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy)),'worksheet A'!B8:B2000) -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in myaddy)

"roy.okinawa" wrote in message ... I have on worksheet A, column AJ, the dollar amounts of various items.The column is continous with different dates, column H, throughout therange. On worksheet B I want to add the total for a specific month(mm/dd/yyyy), cell J, from that data input on worksheet A. I use the below formulafor other calculations and it works fine. It just gives me total numbers (i.e. Opened = 5, Closed = 10): =SUMPRODUCT(--(TEXT(worksheetA!H8:H2000,"mmm/yyyy")=TEXT(J1,"mmm/yyyy))) I need a formula that will calculate/add the total dollar amount(specific date range) of worksheet A input and be seen on worksheet B($54,875.45). Thanks.


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
excel 2007 - adding dollar amounts scarter Excel Worksheet Functions 1 April 9th 08 09:02 PM
column of dollar amounts don Holden Caulfield New Users to Excel 0 September 12th 06 06:02 PM
How do i convert a spreadsheet with dollar amounts to euros? DeanaCraig Excel Worksheet Functions 1 March 15th 06 05:58 PM
Format dollar amounts for check printing Norman Jones Excel Discussion (Misc queries) 0 November 20th 05 07:23 AM
dollar amounts acsnett New Users to Excel 3 August 30th 05 01:53 AM


All times are GMT +1. The time now is 11:13 AM.

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"