• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

modus Max and median formulas.

A key step can be to use IF to filter the data
= IF( Data[Name]=@name, Data[Numbers] )
Alternatively this can be done using the FILTER function
= FILTER( Data[Numbers], Data[Name]=@name)

From there, one simply nest the array within the chosen function e.g.
= MEDIAN( IF( Data[Name]=@name, Data[Numbers] ) )

In the case of MAX, MAXIFS offers a simpler solution and returns the results for each name as a single dynamic array
= MAXIFS( Data[Numbers], Data[Name], name )
 

Attachments

  • Filtered means.xlsx
    12.1 KB · Views: 0
OK. I had trained myself to enter all data using CSE (Excel 2010) but now it is entirely dynamic array (Office 365 insider channel)!

For one day only, Tables! I have also deleted the FILTER formulas.
 

Attachments

  • Filtered means.xlsx
    12.8 KB · Views: 3
Back
Top