Tag Archives: Microsoft excel formula

Excel formula for Beginners – How to Subtotal by category in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Subtotal by category in Excel.   How to Subtotal by category in Excel Generic formula =SUMIF(color_range,criteria,number_range) Explanation If you need to subtotal numbers by color, you can easily do so with the SUMIF function. In the example shown, …

Excel formula for Beginners – How to Calculate running total in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Calculate running total in Excel.   How to Calculate running total in Excel Generic formula =SUM($A$1:A1) Explanation To calculate a running total, or cumulative sum, you can use the SUM formula with a mixed reference that creates an expanding range. In …

Excel formula for Beginners – How to COUNTIFS with multiple criteria and OR logic in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to COUNTIFS with multiple criteria and OR logic in Excel.   How to COUNTIFS with multiple criteria and OR logic in Excel Generic formula =SUM(COUNTIFS(range,{“red”,”blue”,”green”})) Explanation To count with multiple criteria and OR logic, you can use the COUNTIFS function …

Excel formula for Beginners – How to Count unique numeric values in a range in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count unique numeric values in a range in Excel.   Free Machine Learning & Data Science Coding Tutorials in Python & R for Beginners. Subscribe @ Western Australian Center for Applied Machine Learning & Data Science. Western Australian …

Excel formula for Beginners – How to Count total matches in two ranges in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count total matches in two ranges in Excel.   How to Count total matches in two ranges in Excel Generic formula =SUMPRODUCT(COUNTIF(range1,range2)) Explanation If you want to compare two ranges, and count total matches between the two ranges, …

Excel formula for Beginners – How to Count rows with multiple OR criteria in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count rows with multiple OR criteria in Excel.   How to Count rows with multiple OR criteria in Excel Generic formula =SUMPRODUCT(–((criteria1)+(criteria2)>0)) Explanation To count rows using multiple criteria across different columns – with OR logic – you can use the SUMPRODUCT function. …

Excel formula for Beginners – How to Count rows that contain specific values in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count rows that contain specific values in Excel.   How to Count rows that contain specific values in Excel Generic formula =SUM(–(MMULT(–(criteria),TRANSPOSE(COLUMN(data)))>0)) Explanation To count rows that contain specific values, you can use an array formula based on the MMULT, …

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

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count numbers that begin with in Excel.   How to Count numbers that begin with in Excel Generic formula =SUMPRODUCT(–(LEFT(range,chars)=”xx”)) Explanation To count numbers in a range that begin with specific numbers, you can use a formula based on …

Excel formula for Beginners – How to Count numbers by range with COUNTIFS in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count numbers by range with COUNTIFS in Excel.   How to Count numbers by range with COUNTIFS in Excel Generic formula =COUNTIFS(range,”>=low”,range,”<=high”) Explanation To count numeric data by range or grouping, you can build a summary table and use COUNTIFS …

Excel formula for Beginners – How to Count multiple criteria with NOT logic in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count multiple criteria with NOT logic in Excel.   How to Count multiple criteria with NOT logic in Excel Generic formula =SUMPRODUCT((rng1=crit1)*ISNA(MATCH(rng2,crit2,0))) Explanation To count with multiple criteria, including logic for NOT one of several things, you can …