Thank you very much for your time. Here is the complete formula I've constructed. Every part works except the last (countif) part. I can't get it to return the correct amount.
Here is criteria being used. Thank you in advance for any assistance.
If goals 1 and 2 are >=125% and goal 3 >=100%, 5
If goal 1 >=125% and goals 2 and 3 >=100%, 4
If goals 1,2, and 3 >=100%, 3
If 2 goals >=100%, 2
If 1 goal >=100%,1
=IF(AND(E15>=G14,E16>=G14,E17>=F14),5,IF(AND(E15>=G14,E16>=F14,E17>=F14),4,IF(AND(E15>=F14,E16>=F14,E17>=F14),3,COUNTIF(E15:E17,">=F14"))))