I have attached an example sheet. What I am trying to do is fill column A with employee names evenly. Currently, there are 5 ppl I would like to divide this data between.
If you had a list of employees starting in M1:M5, then you could put this formula in A2, copy down.
=INDEX(M:M,MOD(INT((ROW(A1)-1)/INT((COUNTA(B:B)-1)/COUNTA(M:M))),COUNTA(B:B)-1)+1)