I want to color a column, but only starting from the row that starts with C1. I have this example output. I want to remove the yellow color from the row before C1.
This is the script:
\documentclass[10pt]{llncs}
\usepackage{array}
\usepackage{booktabs}
\usepackage{makecell, booktabs, caption}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{adjustbox}
\newcommand{\normal}[1]{\multicolumn{1}{l}{#1}}
\usepackage{sistyle} % for numbers
\SIthousandsep{,} % for numbers
\usepackage{xcolor}
\usepackage{colortbl}
\definecolor{lightYellow}{cmyk}{0,0.04,4.4,0}
\begin{document}
\title{Title}
\maketitle
\begin{abstract}
Abstract
\end{abstract}
\section{Section1}
\begin{table*}[!tp]
\centering
\caption{some table}
\label{tab:example}
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{l>{\columncolor{lightYellow}}r@{\hspace{5pt}}>{\columncolor{lightYellow}}rr@{\hspace{5pt}}r}
\toprule
\multirow{2}{*}{Criterion} &
\multicolumn{2}{c}{\multirow{2}{*}{Result}}&
\multicolumn{2}{c}{Country} \\
\cline{4-5}
& & &\multicolumn{2}{c}{AU} \\
\midrule
C1 & \num{11}&(0.11\%) & \num{22} &(0.22\%) \\
C2 & \num{33} & (0.33\%) & \num{44}&(0.44\%)\\
\midrule
C3 & \num{44}&(0.44\%) & \num{55}&(0.55\%)\\
C4 & \num{66}&(0.66\%)&\num{77}&(0.77\%)\\
\bottomrule
\end{tabular}
\end{adjustbox}
\end{table*}
\bibliographystyle{splncs04}
\bibliography{ref}
\end{document}



\toprule \multirow{2}{*}{Criterion} & \cellcolor{white}& \cellcolor{white} & \multicolumn{2}{c}{Country} \\ \cline{4-5} & \multicolumn{2}{c}{\multirow{-2}{*}{Result}} &\multicolumn{2}{c}{AU} \\will give you the desired result. – leandriis Jul 03 '19 at 12:18