I got a good answer for porting the standard table into a springer journal from answer here Latex Table Missing Border Lines using following code
\usepackage{xcolor}
\usepackage{tabularray}
\UseTblrLibrary{siunitx}
\begin{document}
\begin{table}[ht]
\caption{Result}
\sisetup{table-format=2.1,
detect-weight, % <--
}
\begin{tblr}{hlines, vlines,
colspec = {X[c] X[1.2,c] X[1.8,c] X[c, si]},
cell{even}{2} = {r=2}{},
cell{odd[3]}{Z} = {font=\bfseries},
row{1} = {guard}
}
Users Set Size (USS)
& Range of Users Individual
& Index of scalar array for mapping
& Transfer Failure \
\SetCell[r=6]{c} 6
& 6 & 10& 23 \
& & 4 & 18.3 \
& 7 & 0 & 13.3 \
& & 4 & 33.3 \
& 7 & 1 & 17 \
& & 2 & 66.6 \
\end{tblr}
\end{table}
\end{document}
(image attached for above latex) but I need to add a row in each cell of columns 3 and 4. For example a row below 4 & 18.3, a row below 4 & 33.3 and a row below 2 & 66.6.
so I am unable to understand where I need to modify I changed \SetCell[r=6]{c} to \SetCell[r=9]{c} but got strange output and error. Can anyone tell what I need to modify in this latex code

