Need help sorting linked cells.

N

NailBombJoe

I have a column of cells that are linked to cells from different place
in the same spreadsheet. These cells contain golf scores. I want t
be able to sort the column of linked cells in ascending order. How ca
I do this
 
D

Dave Peterson

If your formulas are like:
=sheet2!b33
I think you'll have trouble.

You may want to try to put a key value in each row (golfer's name???) and then
use a different formula to retrieve the value:

=vlookup(a33,sheet2!a:b,2,false)

Then sort.
 
Top