Microsoft Excel Tutorials for Analyst

Excel formula for Beginners – How to Count unique values in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Count unique values in Excel.   Excel formula for Beginners – How to Count unique values in Excel Generic formula =COUNTA(UNIQUE(data)) Explanation To count unique values in a set of data, you can use …

Excel formula for Beginners – How to use Filter in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to use Filter in Excel.   Excel formula for Beginners – How to use Filter in Excel Generic formula =FILTER(data,range=value,”not found”) Explanation To query data and extract matching records, you can use the FILTER function . In the example …

Excel formula for Beginners – How to Weighted average in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Weighted average in Excel.   Excel formula for Beginners – How to Weighted average in Excel Generic formula =SUMPRODUCT(numbers,weights)/SUM(weights) Explanation To calculated a weighted average, you can use the SUMPRODUCT function together with the …

Excel formula for Beginners – How to Average with multiple criteria in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average with multiple criteria in Excel.   Excel formula for Beginners – How to Average with multiple criteria in Excel Generic formula =AVERAGEIFS(values,range1,criteria1,range2,criteria2) Explanation To average numbers based on multiple criteria, you can use …

Excel formula for Beginners – How to Average top 3 scores in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average top 3 scores in Excel.   Excel formula for Beginners – How to Average top 3 scores in Excel Generic formula =AVERAGE(LARGE(range,{1,2,3})) Explanation To average the top 3 scores in a data set, …

Excel formula for Beginners – How to Average response time per month in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average response time per month in Excel.   Excel formula for Beginners – How to Average response time per month in Excel Generic formula =AVERAGEIFS(durations,dates,”>=”&A1,dates,”<=”&EOMONTH(A1)) Explanation To average response times by month, you can …

Excel formula for Beginners – How to Average pay per week in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average pay per week in Excel.   Excel formula for Beginners – How to Average pay per week in Excel Generic formula =SUMPRODUCT(hours*rate)/COUNTIF(hours,”>0″) Explanation To calculate average pay per week, excluding weeks where no hours …

Excel formula for Beginners – How to Average numbers ignore zero in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average numbers ignore zero in Excel.   Excel formula for Beginners – How to Average numbers ignore zero in Excel Generic formula =AVERAGEIF(range,”<>0″) Explanation To get the average of a set of numbers, excluding …

Excel formula for Beginners – How to Average numbers in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average numbers in Excel.   Excel formula for Beginners – How to Average numbers in Excel Generic formula =AVERAGE(range) Explanation To get the average of a set of numbers, use the AVERAGE function. In …

Excel formula for Beginners – How to Average last 5 values in columns in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Average last 5 values in columns in Excel.   Excel formula for Beginners – How to Average last 5 values in columns in Excel Generic formula =AVERAGE(OFFSET(firstcell,0,COUNT(rng)-N,1,N)) Explanation To average the last 5 data values …