I have this code...
\documentclass[a4paper]{article}
\usepackage[margin=1.25in]{geometry}
\usepackage{float}
\usepackage{tabularx}
\renewcommand{\arraystretch}{1.5}
\usepackage{multirow}
\title{}
\author{}
\date{}
\begin{document}
\begin{table}[H]
\centering
\begin{tabularx}{\textwidth}{|p{2cm}|X|m{3cm}|}
\hline
\textbf{Participant} & \textbf{Answer} & \textbf{Themes} \
\hline\hline
Short text here & I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think I think & \multirow{5}{*}{Something here} \
\hline
Short text here & test & \
\hline
Short text here & test & \
\hline
Short text here & test & \
\hline
Short text here & test & \
\hline
\end{tabularx}
\end{table}
\end{document}
How can I make themes column take up whole table column without the hline. I still want hline for the other columns. Also vertical center it.


wcolumn is used for and what package provides it like in https://tex.stackexchange.com/a/522048/231495? Never heard of it. – ketena3886 Jan 01 '21 at 16:37wandWare new column specifier for fixed width column, to which you can append a horizontal position specifier, e.g.wc{2cm}is for a horizontally centred column 2cm wide. It comes with recent versions ofarray. – Bernard Jan 01 '21 at 16:42