Month: October 2020

Excel formula for Beginners – How to find Max value on given weekday in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Max value on given weekday in Excel.   Excel formula for Beginners – How to find Max value on given weekday in Excel Generic formula {=MAX(IF(TEXT(dates,”ddd”)=”Mon”,values))} Summary To find the maximum value …

Excel formula for Beginners – How to find Max value in given month in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Max value in given month in Excel.   Excel formula for Beginners – How to find Max value in given month in Excel Generic formula =MAXIFS(sales,dates,”>=”&G4,dates,”<=”&EOMONTH(G4,0)) Summary To find the maximum value in …

Excel formula for Beginners – How to find Max value ignore all errors in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find max value ignore all errors in Excel.   Excel formula for Beginners – How to find max value ignore all errors in Excel Generic formula =AGGREGATE(4,6,values) Summary To get the maximum value …

Excel formula for Beginners – How to find Max of every nth column in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Max of every nth column in Excel.   Excel formula for Beginners – How to find Max of every nth column in Excel Generic formula {=MAX(IF(MOD(COLUMN(rng)-COLUMN(rng.first)+1,n)=0,rng))} Summary To get the max of …

Excel formula for Beginners – How to find Larger of two values in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Larger of two values in Excel.   Excel formula for Beginners – How to find Larger of two values in Excel Generic formula =MAX(value1,value2) Summary To get the larger, or greater, of …

Excel formula for Beginners – How to find Large element with criteria in Excel

    (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Large element with criteria in Excel.   Excel formula for Beginners – How to find Large element with criteria in Excel Generic formula {=LARGE(IF(criteria,values),n)} Summary To return the largest values in a …

Excel formula for Beginners – How to find First in – last out times in Excel

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find First in – last out times in Excel.   Excel formula for Beginners – How to find First in – last out times in Excel Generic formula =MINIFS(times,names,name,actions,action) Summary To get “first in, …

Excel formula for Beginners – How to find Unique values 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 find Unique values with multiple criteria in Excel.   Excel formula for Beginners – How to find Unique values with multiple criteria in Excel Generic formula =UNIQUE(FILTER(data,(range1=”b”)*(range2>5))) Summary To extract a list of unique …

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

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

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

  (Excel examples for Beginners) In this end-to-end excel example, you will learn – Excel formula for Beginners – How to find Unique values by count in Excel.   Excel formula for Beginners – How to Count unique values with criteria in Excel   Generic formula =COUNTA(UNIQUE(FILTER(range,criteria))) Summary To count unique values with one or …