I am trying to implement a table given in the snapshot. Firstly, I just want to draw a multirow, as it is shown in the image.

\documentclass[12pt, a4paper,twoside]{memoir}
\begin{document}
\definecolor{c1}{rgb}{0.30980, 0.50588, 0.73725}
\definecolor{c2}{rgb}{0.82353, 0.87843, 0.92941}
\setlength{\arrayrulewidth}{1pt}
\setlength{\extrarowheight}{1.0pt}
\begin{table}[H] % added on 12172013 for caption and label
\centering
\caption{Table}
\label{tb32b}
%\arrayrulecolor{white}
\begin{tabular}{|p{4.5em}|p{3.8cm}|p{7cm}|l|}
\rowcolor{c1}
\multirow{4}{*}{\textcolor{white}{Measure}}
& \multicolumn{2}{l|}{\multirow{4}{*}{\textcolor{white}{Description}}} &
\multirow{4}{*}{\textcolor{white}{NO.}} \\
\hline
\arrayrulecolor{white}
\rowcolor{c2}
\multirow{4}{*}{Orientation-based} & \multicolumn{2}{p{11.25cm}|}{The first orientatiofdsafsafsadfsdafdsfasdfdasfdsafasdfsdafdsaffsdafasdt.} & \multirow{2}{*}{$M_8$} \\
\rowcolor{c2}
& \multicolumn{2}{p{11.25cm}|}{The second osafdsafsdafasdfsda the sadfdsas of the misdafdsa points.} & \multirow{2}{*}{$M_9$} \\
\hline
\rowcolor{c2}
\multirow{4}{*}{Pair-based} & Equ1 & \multirow{4}{*}{sdafdsafasdfdsafasdfdsfasdfdsafdsafdsafasdfdsafasdfasdfsadfasdfsadfsadfasdfdsafdsafdsafdasfdsafdsafasdfasdfsadafdas} & \multirow{4}{*}{$M_{10\_13}$} \\
\cline{2-3}
& Equ2 & & \\
& Equ3 & & \\
& Equ4 & & \\
\hline
\end{tabular}
\end{table}
\end{document}
I found a thread but I cannot modifiy it successfully. The URL is Formatting of Tables in Latex, using multirow and multicolumn together
And then I have a new snapshot of my code. This one is closer to the expected table. But row line between M8 and M9 fail to display, and row colors of the last three rows were not showed.



\begin{document}, no packages defining colors etc. – daleif Jan 06 '14 at 15:28