[Tex/LaTex] multirow and multicolumn

multicolumntables

I want to draw a table which has multi-column in one row, as it is shown by the uploaded image. I have the code of a regular table in this style and I tried to modify it but failed. The uploaded image is a snapshot of word version table. I also want to control the line width between rows and columns, for the line width in LaTex is a little wider. So, it is not that pretty. BTW, is it possible to control the font of text in table? Could you help a little? Appreciate that.

enter image description here

\definecolor{c1}{rgb}{0.30980, 0.50588, 0.73725}
\definecolor{c2}{rgb}{0.82353, 0.87843, 0.92941}

\begin{center}
\setlength{\arrayrulewidth}{2pt}
\setlength{\extrarowheight}{1pt}
\color{c1}
\arrayrulecolor{white}  

\begin{tabular}{|l|c|c|l|}

\rowcolor{c2}
\multirow{3}{*}{Measure} & \multicolumn{2}{|c|}{Description} & \multirow{3}{*}{NO.} \\
\hline

\rowcolor{c2}
{DFDF} & {fdsafdas} & {asdfasdf} & {asdfasd} \\
\hline

\rowcolor{c2}
{DFDF} & {fdsafdas} & {asdfasdf}  \\
\hline

\end{tabular}
\end{center}

Best Answer

As masu mentioned, in showed picture you haven't multirows. probably with multirow you think on more lines in one cells, as you can see from example below:

\documentclass[border=5mm]{standalone}
    \usepackage[table]{xcolor}
\begin{document}
\definecolor{c1}{rgb}{0.30980, 0.50588, 0.73725}
\definecolor{c2}{rgb}{0.82353, 0.87843, 0.92941}
\setlength{\arrayrulewidth}{2pt}
\setlength{\extrarowheight}{1pt}
\arrayrulecolor{white}

    \begin{tabular}{|p{4em}|c|c|l|}
\rowcolor{c1}
\textcolor{white}{Measure} 
        & \multicolumn{2}{c|}{\textcolor{white}{Description}} 
                                        &   \textcolor{white}{NO.}  \\
    \hline
\rowcolor{c2}
DFDF    &   fdsafdas    &   asdfasdf    & {asdfasd}                 \\
    \hline
\rowcolor{c2}
DFDF DFDF   & fdsafdas  &   asdfasdf    &                           \\
    \hline
    \end{tabular}
\end{document}
Related Question