Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Total weekly wages by month

I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Total weekly wages by month

Bill,

Prefered method:

Use a Pivot table, with the dates as the row fields, and then group by date. No formulas involved.

Or, use a formula like

=SUMPRODUCT((MONTH(C3:C25)=2)*D3:D25)

where column C has the dates, and D the numbers, and you want February results.
(This could be modified to make a table by using

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

Where G2 has a month number, and the numbers continue down column G...

Another method.

Use a helper column with the formula

=MONTH(cell with date)

and base the SUMIF on that column.



HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Total weekly wages by month

Have tried 'SUMPRODUCT' formula and what I get in the cell is '#VALUE'. I
must be doing something wrong. The sheet is in employee order, one employee
under the last and totalled. I cannot change the order by sorting for a Pivot
table.

"Bernie Deitrick" wrote:

Bill,

Prefered method:

Use a Pivot table, with the dates as the row fields, and then group by date. No formulas involved.

Or, use a formula like

=SUMPRODUCT((MONTH(C3:C25)=2)*D3:D25)

where column C has the dates, and D the numbers, and you want February results.
(This could be modified to make a table by using

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

Where G2 has a month number, and the numbers continue down column G...

Another method.

Use a helper column with the formula

=MONTH(cell with date)

and base the SUMIF on that column.



HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Total weekly wages by month

Bill,

Are the dates actual dates? or strings that look a little like dates? Change the formatting of the
cell to number, and the date should change to a number....

Otherwise, you have strings, and need to take other steps to change to actual dates.

HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
Have tried 'SUMPRODUCT' formula and what I get in the cell is '#VALUE'. I
must be doing something wrong. The sheet is in employee order, one employee
under the last and totalled. I cannot change the order by sorting for a Pivot
table.

"Bernie Deitrick" wrote:

Bill,

Prefered method:

Use a Pivot table, with the dates as the row fields, and then group by date. No formulas
involved.

Or, use a formula like

=SUMPRODUCT((MONTH(C3:C25)=2)*D3:D25)

where column C has the dates, and D the numbers, and you want February results.
(This could be modified to make a table by using

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

Where G2 has a month number, and the numbers continue down column G...

Another method.

Use a helper column with the formula

=MONTH(cell with date)

and base the SUMIF on that column.



HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Total weekly wages by month

I enter the dates as 13/10/06 and it shows in the cell as 13-Oct-06. I want
to retain this format for ease of reading.

"Bernie Deitrick" wrote:

Bill,

Are the dates actual dates? or strings that look a little like dates? Change the formatting of the
cell to number, and the date should change to a number....

Otherwise, you have strings, and need to take other steps to change to actual dates.

HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
Have tried 'SUMPRODUCT' formula and what I get in the cell is '#VALUE'. I
must be doing something wrong. The sheet is in employee order, one employee
under the last and totalled. I cannot change the order by sorting for a Pivot
table.

"Bernie Deitrick" wrote:

Bill,

Prefered method:

Use a Pivot table, with the dates as the row fields, and then group by date. No formulas
involved.

Or, use a formula like

=SUMPRODUCT((MONTH(C3:C25)=2)*D3:D25)

where column C has the dates, and D the numbers, and you want February results.
(This could be modified to make a table by using

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

Where G2 has a month number, and the numbers continue down column G...

Another method.

Use a helper column with the formula

=MONTH(cell with date)

and base the SUMIF on that column.



HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Total weekly wages by month

Bill,

Then the dates are OK. The ranges referenced by the MONTH function part of the SUMPRODUCT can only
have dates - no headers, text, etc. or that will throw up an error. In my example formula,

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

C2 had a header "Dates", and C3 to C25 had actual dates. G2 has the number 2 (for February), and
D3:D25 have numbers that I want to sum. D2 had the header "Values".....

HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I enter the dates as 13/10/06 and it shows in the cell as 13-Oct-06. I want
to retain this format for ease of reading.

"Bernie Deitrick" wrote:

Bill,

Are the dates actual dates? or strings that look a little like dates? Change the formatting of
the
cell to number, and the date should change to a number....

Otherwise, you have strings, and need to take other steps to change to actual dates.

HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
Have tried 'SUMPRODUCT' formula and what I get in the cell is '#VALUE'. I
must be doing something wrong. The sheet is in employee order, one employee
under the last and totalled. I cannot change the order by sorting for a Pivot
table.

"Bernie Deitrick" wrote:

Bill,

Prefered method:

Use a Pivot table, with the dates as the row fields, and then group by date. No formulas
involved.

Or, use a formula like

=SUMPRODUCT((MONTH(C3:C25)=2)*D3:D25)

where column C has the dates, and D the numbers, and you want February results.
(This could be modified to make a table by using

=SUMPRODUCT((MONTH($C$3:$C$25)=G2)*$D$3:$D$25)

Where G2 has a month number, and the numbers continue down column G...

Another method.

Use a helper column with the formula

=MONTH(cell with date)

and base the SUMIF on that column.



HTH,
Bernie
MS Excel MVP


"BillMcSweeney" wrote in message
...
I have tried using SUMIF but am stuck in 'criteria'. I have two columns with
week date and amount for each employee. I want to total and show the totals
for each month.








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
12 month Rolling Total Need Help Excel Worksheet Functions 0 September 22nd 06 03:19 PM
if i save 25.00 a month for 40 years at 5% a year whats the total Magnetof51 Excel Discussion (Misc queries) 1 September 21st 06 02:30 AM
Excel 2000: sum function automated? [email protected] Excel Discussion (Misc queries) 2 February 3rd 06 11:30 AM
sort by month with a monthly total sdg8481 Excel Discussion (Misc queries) 3 November 6th 05 07:25 PM
HELP with this function Jay Excel Worksheet Functions 7 May 24th 05 06:45 PM


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