When using multi-part rectangular nodes with the shapes.multipart library, the shape can be split into a maximum of twenty parts. However, only four boxes are allocated by default.
To use the rectangle split shape with more than four boxes, the extra boxes must be allocated first, and this can be done using the key rectangle split parts=<number>.
A little example: on the left the wrong result (only the default four parts are shown and the last two are lost); on the right, the correct output (after using rectangle split parts=6):
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\begin{document}
\begin{tikzpicture}
\node[draw,rectangle split]
at (0,0)
{a\nodepart{two}b\nodepart{three}c\nodepart{four}d\nodepart{five}e\nodepart{six}f};
\node[draw,rectangle split,rectangle split parts=6]
at (2,0)
{a\nodepart{two}b\nodepart{three}c\nodepart{four}d\nodepart{five}e\nodepart{six}f};
\end{tikzpicture}
\end{document}
