Sum values per day

Albert 1

Active Member
Joined
Feb 22, 2002
Messages
395
A1:A100 contents dates, B1:B100 values.
How can I sum the values of all Fridays?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
{=SUM((WEEKDAY(A1:A100)=6)*B1:B100)}

Note: This is an array formula which is entered using the Control+Shift+Enter key combination. For more on array formulas see the Excel Help Index topic for "About array formulas and how to enter them".
This message was edited by Mark W. on 2002-04-24 15:21
 
Upvote 0
On 2002-04-24 15:56, Albert 1 wrote:
I have another question yet.
How can I calculate how many Fridays there are in A1:A100?

Use the following array formula
=SUM(IF(WEEKDAY(A1:A100)=6,1,0))

HTH
 
Upvote 0
Sorry, Mark ... I did not see your post till after I posted mine. Yours is shorter and more elegant.

Regards!

Yogi Anand
 
Upvote 0
On 2002-04-24 16:14, Yogi Anand wrote:
Sorry, Mark ... I did not see your post till after I posted mine. Yours is shorter and more elegant.

Regards!

Yogi Anand

They're really about the same. I used a + operator instead of your IF function call. It's all about the same. You could shorten your IF argument list by omitting the 3rd argument...

{=SUM(IF(WEEKDAY(A1:A100)=6,1))}
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,107
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top