Anybody can help me?
I want to make a scoring system depending on the data I enter: fx.
If enter male in A1 Excel will give a score of 2 in A2
If enter female in A1 Excel will automatically give a score of 4 in A2
If enter age < 30 score of 0
If enter age 30-50 score of 2
If enter age >50 score of 4
Ans so on, so I have a total score in the end.
How do I do this?
Your formula can then be very simple:
=IF(A1=”male”, 2, 4)
You can also use a Drop Down for your ages and simplify the other formula also:
=IF(B1<30, 0, IF(B1< 51, 2, 4))
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.