Microsoft Excel Tutorials for Analyst

Excel formula for Beginners – How to Sum last n columns in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum last n columns in Excel.   Excel formula for Beginners – How to Sum last n columns in Excel Generic formula =SUM(INDEX(data,0,COLUMNS(data)-(n-1)):INDEX(data,0,COLUMNS(data))) Explanation To sum the last n columns in a table of …

Excel formula for Beginners – How to Sum if one criteria multiple columns in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if one criteria multiple columns in Excel.   Excel formula for Beginners – How to Sum if one criteria multiple columns in Excel Generic formula =SUMPRODUCT((criteria_rng=”red”)*(sum_range)) Explanation To sum multiple columns conditionally, using …

Excel formula for Beginners – How to Sum if not blank in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if not blank in Excel.   Excel formula for Beginners – How to Sum if not blank in Excel Generic formula =SUMIF(range,”<>”,sum_range) Explanation To sum cells when certain values are not blank, you …

Excel formula for Beginners – How to Sum if multiple criteria in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if multiple criteria in Excel.   Excel formula for Beginners – How to Sum if multiple criteria in Excel Generic formula =SUMIFS(sum_rng, crit_rng1, crit1, crit_rng2, crit2) Explanation If you need to sum numbers …

Excel formula for Beginners – How to Sum if less than in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if less than in Excel.   Excel formula for Beginners – How to Sum if less than in Excel Generic formula =SUMIF(range,”<1000″) Explanation To sum if less than, you can use the SUMIF …

Excel formula for Beginners – How to Sum if greater than in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if greater than in Excel.   Excel formula for Beginners – How to Sum if greater than in Excel Generic formula =SUMIF(range,”>1000″) Explanation To sum if greater than, you can use the SUMIF …

Excel formula for Beginners – How to Sum if equal to one of many things in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if equal to one of many things in Excel.   Excel formula for Beginners – How to Sum if equal to one of many things in Excel Generic formula =SUMPRODUCT(SUMIF(range,things,values)) Explanation If you …

Excel formula for Beginners – How to Sum if ends with in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if ends with in Excel.   Excel formula for Beginners – How to Sum if ends with in Excel Generic formula  =SUMIF(range,”*text”,sum_range) Explanation To sum if cells end with specific text, you can …

Excel formula for Beginners – How to Sum if date is greater than in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Sum if date is greater than in Excel.   Excel formula for Beginners – How to Sum if date is greater than in Excel Generic formula =SUMIF(range,”>”&DATE(year,month,day),sum_range) Explanation To sum if based on dates …