Tag Archives: Microsoft excel formula

Excel formula for Beginners – How to Filter text contains in Excel

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter text contains in Excel.   Excel formula for Beginners – How to Filter text contains in Excel Generic formula =FILTER(rng1,ISNUMBER(SEARCH(“txt”,rng2))) Explanation To filter data to include data based on a “contains specific text” logic, …

Excel formula for Beginners – How to Filter data between dates in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter data between dates in Excel.   Excel formula for Beginners – How to Filter data between dates in Excel Generic formula =FILTER(data,(dates>=A1)*(dates<=A2),”No data”) Explanation To filter data to include records between two dates, you …

Excel formula for Beginners – How to Filter contains one of many in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter contains one of many in Excel.   Excel formula for Beginners – How to Filter contains one of many in Excel Generic formula =FILTER(data,ISNUMBER(MATCH(rng1,rng2,0)),”No data”) Explanation To filter data to include only …

Excel formula for Beginners – How to Filter by date in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Filter by date in Excel.   Excel formula for Beginners – How to Filter by date in Excel Generic formula =FILTER(rng1,MONTH(rng2)=7,”No data”) Explanation To filter data to include data based on dates, you can …

Excel formula for Beginners – How to Extract common values from two lists in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Extract common values from two lists in Excel.   Excel formula for Beginners – How to Extract common values from two lists in Excel Generic formula =FILTER(list1,COUNTIF(list2,list1)) Explanation To compare two lists and extract …

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

(Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to Count Distinct values in Excel.   Excel formula for Beginners – How to Count Distinct values in Excel Generic formula =UNIQUE(data,FALSE,TRUE) Explanation To extract a list of distinct values from a set of data (i.e. …

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 …