I need to set up a table with three columns.
The first two columns have a width of 7.2 cm and the last has a width of 1.5 cm.
I would like text in the first row of the columns to be centred, but then the text in the first and third columns will remain centred, but the second column is aligned to the left.
I tried the tabularx suggestion on here, but can't set the column widths, let alone see how I can change the second column to left aligned.

\multicolumn{1}{c}of\makecell(needs themakecell) package. If it's the second case, you could try with>{\centering\arraybackslash}p{7.2cm}instead. – leandriis Oct 09 '19 at 06:46
– C. de Haer Oct 09 '19 at 13:22\begin{table}[h] \begin{tabularx}{\linewidth}{>{\hsize=7.2cm}c|>{\hsize=7.2cm}c|>{\hsize=1.5cm}X} \hline Column 1 & Column 2 & Col 3\\ \hline The text in this column needs to be centred and allow for text wrapping and will include equations & Text in this column needs to be aligned to the left and needs to allow for text wrapping & no wrap\\ \hline \end{tabularx} \end{table}>{\hsize=7.2cm}cwill not work. Try with something like\begin{tabular}{>{\centering\arraybackslash}p{7.2cm}|p{7.2cm}|l}instead. – leandriis Oct 09 '19 at 13:38\multicolumn{1}{c}{Column 2}to center one cell in an otherwise differentl aligned column. However, please be aware that this might not work correctly (needs to be adjusted) if the contents of the cell would require a linebreak to fit into the respective column. – leandriis Oct 09 '19 at 13:48\multicolumn{1}{c|}{Column 2}should work. – leandriis Oct 09 '19 at 14:09