I have the following table:
\documentclass{article}
\usepackage{tabu, longtable}
\begin{document}
\begin{longtabu} to \textwidth {|l|l|l|lX|}
1 & Column 2 & 3 & \multicolumn{2}{l|}{Description} \\ \hline
1 & 2 & 3 & A: & Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer eget est id enim vehicula sodales et quis ipsum. \\ \hline
& & & \multicolumn{2}{p{8cm}|}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer eget est id enim vehicula sodales et quis ipsum.} \\ \hline
\end{longtabu}
\end{document}
The last row uses a fixed width for the paragraph (8cm). This does not fit perfectly but shows how the result should look.
My question is: Is it possible to replace the fixed value by something else so Latex calculates the correct width of the last two columns for me?
