I have a table with data which is structured like this:
Is it possible to transform my table to table like this using query
?
I have a table with data which is structured like this:
Is it possible to transform my table to table like this using query
?
=QUERY(A1:C5,"Select max(C) group by B pivot A")
Or
=QUERY(A1:C5,"Select B, max(C) group by B pivot A")
If there is a possibility of repeated weights, would need to do something like this
=ArrayFormula(query({row(A2:C5),A2:C5},"select Col3,max(Col4) group by Col1,Col3 pivot Col2"))