English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have two columns with data, column A and column B. Column A has titles of movies, and column B has prices of the corresponding movies. I have a cell which asks for the "title of highest price movie," I am trying to come up with a formula that does not return the max price, but returns the actual name of the movie in text that has the max price. Can anyone help me out? It's greatly appreciated.

2006-07-11 03:03:39 · 6 answers · asked by gggg 3 in Computers & Internet Programming & Design

6 answers

Don't know if that's possible. You could just sort by the price column.

2006-07-11 03:05:32 · answer #1 · answered by Duds331 5 · 0 0

To return the movie title in a single cell instead of sorting, you can use VLOOKUP:

=VLOOKUP(MAX(A2:A10),A2:B10,2)

The columns in the sample above correspond to the following:
Column A = Price
Column B = Title

So, the function looks for the maximum value in the Price column (1st parameter) and returns the corresponding value in the second column of the range identified in the second parameter. The final parameter tells the function whether to return the 1st or 2nd column in the range (or 3rd, 4th, etc. if you have more than 2 columns).

2006-07-11 10:17:24 · answer #2 · answered by winston33 2 · 0 0

This is very easy task if you use price coloumn perior to Movie Name. if you able to do that you can use vlookup function in following manner.
VLOOKUP(max(A1:200),A1:B:200
,2,False)
Be Sure to using Price as coloumn as column A.
Best of luck

2006-07-15 00:39:27 · answer #3 · answered by Piyush 2 · 0 0

sort it by the price column.

2006-07-11 10:37:04 · answer #4 · answered by sap444333222111 2 · 0 0

tats very simple, to sort datas (even with multiple rows and multiple colounms), go to data and click on sort. but before that select the column that u want to sort............ for more information look in to the following website
http://www.seattleu.edu/it/training/Manuals/exl004.pdf

2006-07-11 10:10:42 · answer #5 · answered by Anonymous · 0 0

check this website:-

2006-07-11 10:49:20 · answer #6 · answered by manniru 1 · 0 0

fedest.com, questions and answers