I'm doing an assignment for one of my electives this year, and I need to put a table of results in it. I somehow managed to get by last year without using any tables in my Dissertation, so I'm a bit new to the tables bit. What I want to achieve looks like this:

the code i've used so far looks like this:
Code: Select all
\begin{tabular}{| c | c | c | c | c | c | c | c | c | c |}
\hline
QB & \multicolumn{2}{c |}{Conductivity} & \multicolumn{2}{c |}{Absorbance} & \multicolumn{2}{c|}{Pressure} & Dial. Temp & \multicolumn{2}{c |}{Clearance} \\
ml min$^{-1}$& mS & mmHg & & $^\circ$C & ml min$^{-1}$ \\
\hline
& inlet & outlet & inlet & outlet & P$_{Bo}$ & P$_{Do}$ & & NaCl & Na-BSP\\
\hline
300 & 13.87 & 6.42 & 0.465 & 0.39 & 28 & 0 & 38.2 & & \\
200 & 14.03 & 4.09 & 0.467 & 0.367 & 18 & 0 & 36.5 & & \\
100 & 13.63 & 1.75 & 0.477 & 0.345 & 13 & 0 & 36.4 & & \\
50 & 13.75 & 0.30 & 0.482 & 0.292 & 12 & 0 & 37.0 & & \\
\hline
\end{tabular}

I've had a go with multirows, but that doesn't seem to be working either:

The code i used to try that is the following:
Code: Select all
\begin{tabular}{| c | c | c | c | c | c | c | c | c | c |}
\hline
\multirow{2}{*}{QB} & Conductivity && Absorbance & Pressure & Dial. Temp & Clearance \\
ml min$^{-1}$& \multicolumn{2}{c|}{mS} & mmHg & & $^\circ$C & ml min$^{-1}$ \\
\hline
& inlet & outlet & inlet & outlet & P$_{Bo}$ & P$_{Do}$ & & NaCl & Na-BSP\\
\hline
300 & 13.87 & 6.42 & 0.465 & 0.39 & 28 & 0 & 38.2 & & \\
200 & 14.03 & 4.09 & 0.467 & 0.367 & 18 & 0 & 36.5 & & \\
100 & 13.63 & 1.75 & 0.477 & 0.345 & 13 & 0 & 36.4 & & \\
50 & 13.75 & 0.30 & 0.482 & 0.292 & 12 & 0 & 37.0 & & \\
\hline
\end{tabular}