Sum a column based on dates in another column
I need to create a formula (in another sheet that references the main sheet) that looks at the dates in a column (Install Date) and filter that by April (3) and show the sum of the numbers in another column (MFD Count). This is it in a nutshell but not working, of course. Thanks!
=SUMIF({Install Date}, MONTH=3, {MFD Count})
Best Answer
-
Hi Suz,
Try this :) (also, April = 4 not 3, just throwing that in as an aside :D)
=SUMIF({Install Date}, MONTH(@cell) = 4, {MFD Count})
Answers
-
Try this out.
=countif({Install Date},Month(@cell) =3, {MFD Count})
How ever would not April be the 4th month of the year?
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Try this:
=SUMIF({Install Date}, IFERROR(MONTH(@cell), 0) = 3, {MFD Count})
-
Hi Suz,
Try this :) (also, April = 4 not 3, just throwing that in as an aside :D)
=SUMIF({Install Date}, MONTH(@cell) = 4, {MFD Count})
-
I finally got it to work with: =SUMIF({Install Date}, MONTH(@cell) = 4, {MFD Count})
Thanks all!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 464 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!