Formula

H

HeatherV

HELP Please! What I'm trying to do is in the one cell a simple sum to work
out the difference between two other cells then (in same cell) I want it to
decide that if the figure returned is greater than £175 I want it to show
£175 but if it is less than £175 I want it to show the actual figure.
Is this possible???
 
N

NBVC

HeatherV;496412 said:
HELP Please! What I'm trying to do is in the one cell a simple sum t
work
out the difference between two other cells then (in same cell) I wan
it to
decide that if the figure returned is greater than £175 I want it t
show
£175 but if it is less than £175 I want it to show the actua
figure.
Is this possible???


Try something like.

=MIN(175,B1-A1

--
NBV

Where there is a will there are many ways.

'The Code Cage' (http://www.thecodecage.com
 
E

Eduardo

Hi,
I assume you want in C1 the difference between B1 and A1

=if((B1-A1)>175,175,(B1-A1))

if this helps please click yes thanks
 

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