Need a formula

L

lynn

I have 4 columns of data. The column headings are Mild,
Moderate, Severe, Maximal. The data is specifying
a 'reaction'. For instance, Row 2 (client 2) had 2 Mild, 6
Moderate, 2 Severe, and 1 Maximal.

I need a formula that will tell me that the highest number
appears in the Moderate column. Any ideas ?
 
D

Dave R.

You say "that the highest number appears in the Moderate column"

Do you mean the highest number that appears in the Moderate column? if so,

=MAX(A1:A500)

just plug in whatever row "Moderate" is.

if not, do you mean you want to return the heading for the column in which
the highest number appears?
 
K

Ken Wright

With your data in A2:D2, in E2 put the following and copy down as far as you
need:-

=CHOOSE(MATCH(MAX(A2:D2),A2:D2,0),"Mild","Moderate","Severe","Maximal")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top