简体   繁体   English

根据最高百分比设置列表中的前 11 名球员(谷歌表格)

[英]Set the top 11 players on a list according to highest percentages (Google Sheets)

The list of players ( COLUMN D ) is ranked from most important to least important, but I want to list the 11 players who participated most in the last three matches.球员名单( COLUMN D )从最重要到最不重要排列,但我想列出最近三场比赛中参与最多的 11 名球员。

If the top 11 had the same percentage, I could use the MAX function as I tried to do.如果前 11 名的百分比相同,我可以像尝试那样使用MAX function。 But the percentages are not equal.但百分比并不相等。

在此处输入图像描述

What I would need was to create a way to find the highest percentages until he found 11 players.我需要创造一种方法来找到最高百分比,直到他找到 11 名球员。

One problem is that when trying to find lower percentages, it lists more than 11 if they have more players with the same percentage.一个问题是,当试图找到较低的百分比时,如果他们有更多具有相同百分比的球员,它会列出超过 11 个。

For example: If happen to complete the list of 11 players need to define between two that have 50%, the chosen one must be the highest one in COLUMN D例如:如果恰好完成了 11 个玩家的列表,需要在两个有 50% 的玩家之间进行定义,则选择的必须是COLUMN D中最高的一个

I thought of FILTER + LEN to get to 11 , but couldn't find a pattern for finding the lowest percentages and the highest rating in COLUMN D as a tiebreaker.我认为FILTER + LEN可以达到11 ,但找不到用于在COLUMN D中找到最低百分比和最高评级作为决胜局的模式。

Below the spreadsheet link for ease of understanding: https://docs.google.com/spreadsheets/d/1Fh2todBAFApGNyKw3f30p3pAAD3DHOVv6qqymHPxLyo/edit?usp=sharing为了便于理解,请在电子表格链接下方: https://docs.google.com/spreadsheets/d/1Fh2todBAFApGNyKw3f30p3pAAD3DHOVv6qqymHPxLyo/edit?usp=sharing

maybe try this:也许试试这个:

=QUERY(D4:H, "select D order by H desc limit 11", 0)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 过滤功能在 Google 表格中的最高日期时无法正常工作 - Filter function not working well with the highest date in Google Sheets 无论如何,我是否有 output 从多个工作表到谷歌工作表中的单元格中的第二高值? - Is there anyway for me to output the second highest value from multiple sheets into a cell in google sheets? 根据所选值过滤数据,在 Google 表格中按日期排序和计数 - Filter data according to a selected value, sorting and counted by date in Google Sheets 排序百分比列表 - sort a list of percentages Google Sheets 按行查询列表并排序 - Google Sheets Query list by row and sort 使用Google表格创建可排序的排名列表 - Create a sortable, ranked list with Google Sheets 依赖谷歌表格中的下拉列表 - Depend drop down list in google sheets 反应-如果得分发生变化,按最高得分对得分板上的球员进行排序 - React - Sort players on scoreboard by highest score if their score changes 编译Google表格中三列的字母字母列表 - Compile an alphabetic list of character strings from three columns in Google Sheets 根据一组固定的字符串按属性名称排序列表 - Sorting list with by a property name according to a fixed set of strings
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM