• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

sumifs - multiple conditions

theath

New Member
I would like to sum the values in table 1 column [Monthly Revenue] if the follwing conditions are met:

1. Table1[Type] = "Managed Service"

2. Table1[End Date] = current month and year recorded in cell BQ1


I am using this formula but having issues. It results in a zero, which is far from the correct amounth.


{=SUMIFS(Table1[Monthly Fixed Revenue],Table1[Type],"Managed Service",Table1[Contract End Date],TEXT(Table1[Contract End Date],"yyyymm")=TEXT($BQ$1,"yyyymm"))}
 
Maybe something like this:


=SUMPRODUCT((Table1[Type]="Managed Service")*(text(Table1[Contract End Date],"yyyymm")=TEXT($BQ$1,"yyyymm"))*Table1[Monthly Revenue])
 
Back
Top