SUMIFS cross sheets for months and years
I am trying to calculate total Amount in sheet#1 below by referring to sheet#2's [Date Sent to Client] and [Related Opportunity: Amount]:
Sheet#2:
So the Amount in sheet#1
SUMIFS({Sheet#2}[Related Opportunity: Amount], YEAR(Sheet#2[Date Sent to Client]=STC-year), MONTH(Sheet#2[Date Sent to Client]=STC-Month)
I have tried many times but still frustrated to make it work. Thanks
Best Answer
-
You are going to need something that looks like this...
=SUMIFS({Sheet 2 Amount Column}, {Sheet 2 Date Column}, AND(IFERROR(YEAR(@cell), 0) = [STC-Year]@row, IFERROR(MONTH(@cell, 0) = [STC-Month]@row))
Answers
-
You are going to need something that looks like this...
=SUMIFS({Sheet 2 Amount Column}, {Sheet 2 Date Column}, AND(IFERROR(YEAR(@cell), 0) = [STC-Year]@row, IFERROR(MONTH(@cell, 0) = [STC-Month]@row))
Help Article Resources
Categories
Check out the Formula Handbook template!