Multiple questions in a formula

  • Thread starter Have three columns R,S,T
  • Start date
H

Have three columns R,S,T

I have three cells S, T, U with vales 7,2,8
I want to look at all three cells and put the lowest value (T) in col Z
How can I do it in one formula?
Thanks
 
J

JulieD

Hi

In the cell in column Z type
=MIN(S:U)
or if there is actual cells rather than the whole column
=MIN(S1:U1)
these will put the lowest value in the cell

if it's the cell reference of the lowest value you're after use
=CELL("address",INDEX(S1:U1,MATCH(MIN(S1:U1),S1:U1,0)))


Cheers
JulieD


"Have three columns R,S,T" <Have three columns
R,S,[email protected]> wrote in message
news:[email protected]...
 
G

Gord Dibben

S,T and U are not cell addresses.

S1, T1 and U1 are cell addresses.

In Z1 enter =MIN(S1:U1)

Gord Dibben Excel MVP
 

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