IF Function

  • Thread starter Thread starter gpkelly
  • Start date Start date
G

gpkelly

I'm currently producing a league table for football in excel and
wanted to have column showing if a team has moved up, down or staye
the same position in the table, from the previous week.

I tried to use an IF function to say e.g. IF(A2>B2,"up","down) o
A2=B2,"="

Where A2 is the new league position and B2 is the previous week'
position.

What would be the correct formula to satisfy this.

I want to have "up" if the position is higher than last week and "down
if it is lower. If it is the same i want to have "=".

Any help would be much appreciated.

Thanks

Gerar
 
Hi Gerard,

Maybe you can use something along the lines of:

=IF(A2>B2,"UP",IF(A2=B2,"=","DOWN"))

Regards,
Bondi
 

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

Back
Top