Hello! I'm trying to solve the following issue using an array formula but I'm struggling. I'm fairly versed with arrays but can't figure this out. Thank you in advance for the help!
Using the example below, I'd like to pull the max number associated with each individual text in the first column. E.g., 'Test 1' would be 9, 'Test 2' 8, and 'Test 3' 6. Then I'd like to return the max of that, which would be 9.
Is this possible using one single array formula? There are two paths that I thought could work to solve this, but I'm struggling to figure out how to use an array and then qualify that array by the array itself, if that makes sense. I'm struggling to even figure out what to search online to help find info on this.
For example, the formula below would work but only calculates the total for the text in A2, 'Test 1'. I essentially need a formula so that the array becomes: =max(sums Test 1,sums Test 1,sums test 2,sums test 2,sums test 3), and then =max(9,9,8,6).
=Sum((A2:A6)=A2)*(B2:B6))
[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]Test 1[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]Test 1[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Test 2[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]Test 2[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Test 3[/TD]
[TD]6[/TD]
[/TR]
</tbody>[/TABLE]
Thank you! ray:
Using the example below, I'd like to pull the max number associated with each individual text in the first column. E.g., 'Test 1' would be 9, 'Test 2' 8, and 'Test 3' 6. Then I'd like to return the max of that, which would be 9.
Is this possible using one single array formula? There are two paths that I thought could work to solve this, but I'm struggling to figure out how to use an array and then qualify that array by the array itself, if that makes sense. I'm struggling to even figure out what to search online to help find info on this.
For example, the formula below would work but only calculates the total for the text in A2, 'Test 1'. I essentially need a formula so that the array becomes: =max(sums Test 1,sums Test 1,sums test 2,sums test 2,sums test 3), and then =max(9,9,8,6).
=Sum((A2:A6)=A2)*(B2:B6))
[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]Test 1[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]Test 1[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Test 2[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]Test 2[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Test 3[/TD]
[TD]6[/TD]
[/TR]
</tbody>[/TABLE]
Thank you! ray: