Forum Discussion

abundas's avatar
abundas
Copper Contributor
Apr 12, 2019
Solved

Excel formula help

Trying to create a formula that will sum a dollar amount from another worksheet in the same workbook while filtering two types of criteria.   =SUM(Table1[MRR]) /COUNTIFS(Table1[Status], "red", Tabl...
  • PeterBartholomew1's avatar
    Apr 13, 2019

    abundas 

    Then I assume you have not actually provided the 5 parameters as suggested.

    Check carefully that you have conformed to the syntax

    =SUMIFS(

    Table1[MRR]),  {the range to be conditionally summed}

    Table1[Status],   {the first criterion range}

    "red",   {the value you required for the first criterion}

    Table1[Primary CSEP Identification],  {the second criterion range}

    "<>Contract Renewal - within 3 months")   {the value you required for the second criterion}

    with commas separating the arguments.