Forum Discussion
Formula to automatically move to a new column based on date.
Hello everyone, attached is an example of the data I'm working with.
What I'm having trouble figuring out is a formula that will move over automatically as the date changes with the =TODAY().
I currently use =SUMIF() to provide a total of the range under the date. But I need to shift over the formula's criteria references every day. This formula will help with other parts of some work as well and would go a much longer well.
Name | Category | 10/1/2020 | 10/2/2020 | 10/3/2020 | 10/4/2020 | 10/5/2020 | 10/6/2020 | 10/7/2020 | 10/8/2020 | 10/9/2020 | 10/10/2020 |
Black | Dark | 50 | 3 | 44 | 32 | 0 | 22 | 150 | 2 | 38 | 0 |
Thank you,
For example for US on the specified date:
=SUMPRODUCT(B4:C10*(B3:C3=A1)*(F4:F10="US"))
See the attached version.
7 Replies
Hi there,
I think you should follow the following formula:
=SUM(FILTER($C$4:$L$10,$C$4:$L$4=$P$3)*(($B$4:$B$10=O4)))
=SUM(FILTER($C$4:$L$10,$C$4:$L$4=$P$3)*(($B$4:$B$10=O5)))
My solution file is attached to this message.
Good luck.
Can you explain in detail what you actually want to do?
- RobG92Copper Contributor
If I have Today() on A1, it produces today's current date.
In a table, I have a set of data with dates as headers and numeric data under each date.I need help figuring out an appropriate formula to automatically sum data based on the date in the header. And that the date in the header needs to match the date in A1 ("TODAY()").
I was using a SUMIF Formula to Sum based on other criteria, but I have to adjust range being referenced in the data to reflect the data in the column under the present day represented in the header.
Hope that makes sense.