Microsoft Excel Tutorials for Analyst

Excel formula for Beginners – How to Count cells that contain errors in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells that contain errors in Excel.   How to Count cells that contain errors in Excel   Generic formula =SUMPRODUCT(–ISERROR(range)) Explanation To count cells that contain errors, you can use the ISERROR function, wrapped in the SUMPRODUCT function.  In the …

Excel formula for Beginners – How to Count cells that contain string in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells that contain string in Excel.   How to Count cells that contain string in Excel   Generic formula  =SUMPRODUCT(–((ISNUMBER(FIND(“abc”,rng)) + ISNUMBER(FIND(“def”,rng)))>0)) Explanation To count cells that contain either one value or another, you an either use a …

Excel formula for Beginners – How to Count cells that begin with something in Excel

      (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells that begin with something in Excel.   How to Count cells that begin with something in Excel   Generic formula  =COUNTIF(rng,”txt*”) Explanation To count the number of cells that begin with certain text, you can use …

Excel formula for Beginners – How to Count cells that are not blank in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells that are not blank in Excel.   How to Count cells that are not blank in Excel Generic formula  =COUNTA(range) Explanation To count cells that are not blank in a range, you can use the COUNTA function. In the …

Excel formula for Beginners – How to Count cells that are blank in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells that are blank in Excel.   How to Count cells that are blank in Excel Generic formula =COUNTBLANK(range) Explanation To count the number of cells that are blank, you can use the COUNTBLANK function. In the example shown, …

Excel formula for Beginners – How to Count cells not equal to x or y in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells not equal to x or y in Excel.   How to Count cells not equal to x or y in Excel Generic formula =COUNTIFS(rng,”<>x”,rng,”<>y”) Explanation To count cells not equal to this or that, you can use …

Excel formula for Beginners – How to Count cells not equal to many things in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells not equal to many things in Excel.   How to Count cells not equal to many things in Excel  Generic formula =SUMPRODUCT(–(ISNA(MATCH(data,exclude,0)))) Explanation To count cells not equal to any of many things, you can use a …

Excel formula for Beginners – How to Count cells not equal to something in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells not equal to something in Excel.   How to Count cells not equal to something in Excel Generic formula =COUNTIF(rng,”<>X”) Explanation To count the number of cells that contain values not equal to a particular value, …

Excel formula for Beginners – How to Count cells less than something in Excel

      (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells less than something in Excel.   How to Count cells less than something in Excel Generic formula =COUNTIF(rng,”<X”) Explanation To count the number of cells that contain values less than a particular number, you can …

Excel formula for Beginners – How to Count cells greater than something

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells greater than something.   How to Count cells greater than something Generic formula =COUNTIF(rng,”>X”) Explanation To count the number of cells that have values greater than a particular number, you can use the COUNTIF function. In the generic …