Conditional formula

D

desmond1412

trying to construct a formula for the following for the same cell:
if a2 > 6, then e2 = 0
if a2 = 6, then e2 = 1
if a2 = 5, then e2 = 2
if a2 = 4, then e2 = 3
if a2 = 3, then e2 =5

this is for a golf scoring system. a2 values are hole scores and results
are "handicap" point scores. Any help greatly appreciated
 
M

Ms-Exl-Learner

Copy and paste the below formula in E2 cell.
=IF(A2>6,0,IF(A2=6,1,IF(A2=5,2,IF(A2=4,3,IF(A2=3,5,"")))))
 

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

Similar Threads

Need help for a formula 5
Average problem 1
Logically Calculating Multiple Fields 5
Complex formula help , please. 13
compare values 10
if(isna(match formula 8
Nest If - What am I doing wrong... 7
formula help 1

Top