Forum Discussion
bbsin
Aug 09, 2022Iron Contributor
find the years of serving and match back the person and display. -HOW to?
hi I like to display if the person has been servicing from 2 to 5 to display in the 5 year column 6 to 10 years to 10 year column and so on.. can advise what is the formula and do a...
Harun24HR
Aug 09, 2022Bronze Contributor
For 5 years
=IF(AND(LEFT(B3,1)*1>=2,LEFT(B3,1)*1<=5),A3,"")
For 10 years
=IF(AND(LEFT(B3,1)*1>=6,LEFT(B3,1)*1<=10),A3,"")
For 20 years
=IF(LEFT(B3,1)*1>=11,A3,"")