A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Mark Newman4,
Thanks for your post in Microsoft Community.
I'll respond to the four questions you marked in bold:
- I'm not quite sure about the number of games each player has played in sheet1. Are you referring to the number of entries for each player in column A? For example, for player Annette, from your screenshot, I'm not sure how the data in cell B2 (27) was obtained in sheet2. Could you please share more context with me?
- My understanding is to check cells H3 to M7 in sheet1 and find the highest score and the highest scorer.
- For cell J1 in sheet2, use the MAX function to directly search for the maximum value.
=MAX(Sheet1!H3:Sheet1!M7)
- For cell K1 in sheet2, to accommodate the possibility of multiple highest scorers, I used the TEXTJOIN function to concatenate the results.
=TEXTJOIN(", ", TRUE, IF(Sheet1!H3:Sheet1!M7 = J1, Sheet1!H2:Sheet1!M2, "Not Found"))
- For cell J1 in sheet2, use the MAX function to directly search for the maximum value.
- My understanding is to check cells F2 to F8 in sheet2 and look up who has the most spares.
- For cell J3 in sheet2, use the MAX function to directly search for the maximum value.
=MAX(F2:F8) - For cell K3 in sheet2. However, based on the screenshot, player Annette doesn't seem to have as many as five pieces, which doesn't match the result in your screenshot.
=TEXTJOIN(", ", TRUE, IF(F2:C4 = J3, A2:A8, "Not Found"))
- For cell J3 in sheet2, use the MAX function to directly search for the maximum value.
- From the screenshot, cells J5 and K5 in Table 2 seem to describe finding the player who holds the most "9"s. However, your description seems to be searching for the highest score and the highest scorer in cells C2 to C8 in Table 2. Please let me know what your actual requirements are.
I hope the information above is helpful to you, and I look forward to your reply!
Best Regards,
Thomas C - MSFT | Microsoft Community Support Specialist