I have an issue with the width of a column, I have a long word in a cell which is larger than the column width, I've tried with \parbox, changing the width of the box and the column, but I can't fix it. Here's the code, I wrote the needed packages, multirow and array: (I'm sorry for the rotated image).
\documentclass{article}
\usepackage{array}
\usepackage{multirow}
\begin{document}
\begin{table}[H]
\centering
\begin{tabular}{|c|>{\centering\arraybackslash}m{13mm}|> {\centering\arraybackslash}m{13mm}|>{\centering\arraybackslash}m{13mm}|> {\centering\arraybackslash}m{13mm}|>{\centering\arraybackslash}m{13mm}|>{\centering\arraybackslash}m{30mm}|}
\hline
\multirow{2}{*}{text} & \multicolumn{4}{|c|}{text text text text text text text} & \multirow{2}{*}{thereisalongwordhere}\\
\cline{2-5}
& text & text & text & text &\\
\hline
\end{tabular}
\end{table}
\end{document}



cand fill to its natural width the same as the*specifier for multirow. – David Carlisle Jan 2 at 19:03cwould make it wider, but perhaps you need it to be an m column for other reasons not shown in this example. – David Carlisle Jan 2 at 19:10