costing values

H

hugoalegria

I have a spread sheet that has the following information
column A Column B Column C
1.35 3.5
1.40 3.5
1.45 3.5
1.40 3.5

I need a formula such that if A3 is> than A4 (which is the average of
A1:A3), then I use that value in column C for final costing, If A3 is not >
then A4,then I would like to use A4 (the average ) for final costing.

Thanks in advance.
 
R

Red

how about this:

=if(A3>A4,C3,A4) Im assuming the costing value for A3 is in C3. What
this will not take into account is if A3 and A4 are equal. If you want to
default to A3 if A3 and A4 are equal just change it to this.
=if(A3>=A4,C3,A4)
 
S

Sandy Mann

=Max(A3,A4)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
H

hugoalegria

Thank you, Thank you, This was unbelivebly cool, All the other formulas
worked very well, however this was simple and elegant. Thank you
--
halegria


Sandy Mann said:
=Max(A3,A4)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
S

Sandy Mann

You're very welcome. Thanks for the thanks.

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk


hugoalegria said:
Thank you, Thank you, This was unbelivebly cool, All the other formulas
worked very well, however this was simple and elegant. Thank you
 

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