If Formula confusion

S

Swtmelly

Good Morning, I need help with the following:

Gold pins go to employees with 30+ years, silver pins to employees with 25 -
29 years. I can't figure out how to comine the IF formulas to return a G or
an S

Example - Joe has 27 years experience, 27 is in cell G8 in G9 need an S to
appear.

Mary has 31 years experience, need G to appear.

Thanks
 
D

DILipandey

Hi Swtmelly,

Use following formula in G9:-

=IF(AND((G8)>=25,G8<=29),"S",IF(G8>=30,"G","Service Years are less than 25"))

Thanks & Best Regards,
--
Click on Yes, if it is useful.

Thanks & Best Regards,
Dilip Kumar Pandey
MBA, BCA, B.Com(Hons.)
(e-mail address removed)
(e-mail address removed)
New Delhi, India
 
R

RagDyeR

Try this:

=IF(G8>=30,"G",IF(G8>=25,"S",""))


--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

Good Morning, I need help with the following:

Gold pins go to employees with 30+ years, silver pins to employees with 25 -
29 years. I can't figure out how to comine the IF formulas to return a G or
an S

Example - Joe has 27 years experience, 27 is in cell G8 in G9 need an S to
appear.

Mary has 31 years experience, need G to appear.

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