Hi Mynda
I need formula that will auto fill numbers in Column D based on the pre-determined Target No. of Headcount in the table, and return the corresponding rating in Column E.
Target No. of Headcount i each Rating varies with the total headcount in each department. In the attached example there is no headcount for Rating 5 and Rating 1.
For department with total headcount of more than 20, there will be Target No. of Headcount in Rating 1 and Rating 5.
Thank you.
Regards
Boon Say
Hi,
a first approach without disturbing very complicated (for me) formulas.
In E8:
=IFERROR(MID(REPT(F$1,F$3)&REPT(E$1,E$3)&REPT(D$1,D$3)&REPT(C$1,$C$3)&REPT(B$1,$B$3),ROWS($1:1),1)+0,"")
In D8
=COUNTIF(E$8:E8,E8)
Not sure if this kind of formulas could be adapted to your job.
Regards