Hey all,

I have a list of values in Column A that goes like:


A
B
C
D
... etc

and a list in column B that goes something like:


0.1
0.2
0.01
0.04
....etc

I would like to arrange it so that the values in column B are listed from high to low, and the values in column A go with it


So the final for this example would be

B 0.2
A 0.1
D 0.04
C 0.01

How can I accomplish this?

All help appreciated, thanks!