View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ahkasiv ahkasiv is offline
external usenet poster
 
Posts: 4
Default Sorting data does not expand to other sheets

Ashish, thanks for the suggestion which I will use regardless but it doesn't
seem to work for me. Just to clarify, if I sort Column A sheet 1 from a to
z, sheet 2 column b stays the same and does not sort with column A. Ideally
I would like to see sheet 2 change from
A B
1 =sheet1!A1 circle
2 =sheet1!A2 square
3 =sheet1!A3 oval


to
A B
1 =sheet1!A3 oval
2 =sheet1!A1 circle
3 =sheet1!A2 square


The reason why there is data on 2 sheets is because otherwise the data is
less manageable and stretches across 50 columns. This was our solution
although faulty it would seem. :)

"Ashish Mathur" wrote:

Hi,

In column B of sheet 2, use the VLOOKUP() formula

=vlookup(A1,Sheet1!A1:B3,2,0) and copy down

--
Regards,

Ashsih Mathur
Microsoft Excel MVP
www.ashishmathur.com

"ahkasiv" wrote in message
...
Hi. I am looking for a way to maintain data on multiple sheets if I sort.
For example:
Sheet 1
A B
1 k blue
2 m green
3 c red

Sheet 2 is
A B
1 =sheet1!A1 circle
2 =sheet1!A2 square
3 =sheet1!A3 oval

Every time I sort column A in sheet 1, column A in sheet 2 does as well,
but
the sort did not expand to the data in column B sheet 2. Is there a way
around this? Thanks!