When I have a manual line break in a cell of a tabularx table, then the vertical line goes missing.
\documentclass{article}
\usepackage{tabularx}
\usepackage[sfdefault]{cabin}
% https://tex.stackexchange.com/questions/89166
\newcolumntype{Y}{>{\centering\arraybackslash}X}
\begin{document}
\begin{tabularx}{\textwidth}{lc|l|Y|Y|Y|Y}
\hline
% Row
Text & & & & & & \\ \hline
% Row
Text\\ Text & & & & & & \\ \hline
\end{tabularx}
\end{document}



Text\\ Text & & & & & & \\ \hlineif the firs text is own row (inlcolumn type only this is sensible, since it is not designe for multline contents)than it should follows ampersands for each empty cell. – Zarko May 01 '17 at 19:41\\\isn't "allowed" with in a cell? – Dr. Manuel Kuehner May 01 '17 at 19:45\rowcolor, which also only colors the cells which are existent. If you end a line in atabularthe remaining cells are non existent to those formattings. – Skillmon May 01 '17 at 19:50\\ends the row so that row only has one cell. The vertical lines are all the right hand content of a cell (except the first cell which has left and right rules) so if you omit the cell the line goes, just as if you omit it with\multicolumn– David Carlisle May 01 '17 at 19:53