SOLVED

Looking to Sum multiple rows that match dates

Copper Contributor

LawrenceOutlaw_0-1674115404503.png

 

Hello I'm, looking to sum all the values below on a specific date.

 

It's easy enough to get the date in that is field and it's easy to make searchable.

 

Such as Enter Date, let's make cell A2

 

Now I know countif can return the number of times that A2's value appears such as 4/1/2022 would be 3

 

What I want to do is sum the rows of each appearance into one cell. So all of 4/1/2022's entries summed would all together be $21 for one cell for example.

 

I think I am close on the formula it finds each instance then sums the 6 rows below, then sums all those together. But I am having trouble with the formula, I want it to be able to easily pick a date.

 

3 Replies
best response confirmed by Hans Vogelaar (MVP)
Solution

@LawrenceOutlaw 

A 365 solution:

 

=LET(stack,HSTACK(B1:E8,B10:E17,B19:E26),filtered,FILTER(DROP(stack,1),TAKE(stack,1)=H9),SUM(filtered))
This looks to be what I am looking for thank you!
Glad the solution fit your needs. It helps to have up-to-date software!
1 best response

Accepted Solutions
best response confirmed by Hans Vogelaar (MVP)
Solution

@LawrenceOutlaw 

A 365 solution:

 

=LET(stack,HSTACK(B1:E8,B10:E17,B19:E26),filtered,FILTER(DROP(stack,1),TAKE(stack,1)=H9),SUM(filtered))

View solution in original post