graph - To conditions in excel -
i trying create graph test results.
at moment have somthing this.
=countif(e22:e36,i19) i =if=test1(countif(e22:e36,i19))
i have results so
**test name** ------- test1 test1 test1 test1 **result** ------- pass pass pass fail fail **total** ------- 1 23 4 5 5
which version of excel using? in excel 2007 or later try countifs "s", e.g. assuming test designation (test1, test2 etc.) in column d try
=countifs(e22:e36,i19,d22:d36,"test1")
or in earlier versions of excel try sumproduct, i.e.
=sumproduct((e22:e36=i19)*(d22:d36="test1"))
Comments
Post a Comment