Day: July 27, 2020

Excel formula for Beginners – How to Subtotal invoices by age in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Subtotal invoices by age in Excel.   How to Subtotal invoices by age in Excel Generic formula =SUMIF(age,criteria,amount) Explanation If you need to subtotal invoice amounts by age, you can easily do so with the SUMIF function. In …

Excel formula for Beginners – How to Subtotal by invoice number in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Subtotal by invoice number in Excel.   How to Subtotal by invoice number in Excel Generic formula =IF(COUNTIF(range,criteria)=1,SUMIF(range,criteria,sumrange,””) Explanation To subtotal values by invoice number, you can use a formula based on COUNTIF and SUMIF. In the example shown, …

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. …