In my formula you could replace COUNT/COUNTA with SUMPRODUCT which removes the problem of numeric vs text data
e.g.
=IFERROR(INDEX($C$5:$K$10,MOD((ROWS($1:1)-1),SUMPRODUCT((LEN($B$5:$B$10)>0)+0))+1,((INT((ROWS($1:1)-1)/COUNT($B$5:$B$10))*2+1))),"")
Unfortunately, you cannot use this in a named range (Jason's "Row_Count")
Bookmarks