2

I want to use transpose formulae in this data

Input

and I want desire output will look like this

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124
Khan
  • 97
  • 1
  • 11

1 Answers1

4

try:

=QUERY(A2:B, "select max(B) where A is not null group by B pivot A")

0


or:

=ARRAYFORMULA(SUBSTITUTE(TRANSPOSE(SPLIT(TRANSPOSE(QUERY(QUERY(
 {SUBSTITUTE(A2:A, " ", "♥"), B2:B}, 
 "select max(Col2)
  where Col1 is not null
  group by Col2
  pivot Col1"),,999^99)), " ")), "♥", " "))

0

player0
  • 124,011
  • 12
  • 67
  • 124