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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!