I can draw circle around the some of enumi, but I can not draw circle around the some of enumii.
\documentclass{article}
\usepackage{refcount}
\usepackage{tikz}
\usetikzlibrary{shapes.misc}
\usetikzlibrary{calc}
\tikzset{
every round node/.style={
draw,
shape=rounded rectangle,
rounded rectangle arc length=180,
inner sep=+.333em,
text depth=+.1ex},
light/.style={fill=none, text=black},
dark/.style={fill=black, text=white}}
\newcommand{\round}[2][]{%
\tikz[baseline]
\node[
every round node,
anchor=base,
#1]{$#2$};}
\begin{document}
\begin{enumerate}
\item\label{1} blabla
\pgfmathtruncatemacro{\Result}{\getrefnumber{1}+1}
\item[\round{\Result}] Step one
\addtocounter{enumi}{1}
\item Step two
\begin{enumerate}
\item\label{2} blabla
%\pgfmathtruncatemacro{\Result}{\getrefnumber{2}+1}!!!! IT IS NOT WORK HERE.
\item[\round{\Result}] Step one
\item blalblabla
\end{enumerate}
\item Step three
\end{enumerate}
\end{document}


enumis fine, is your trouble related to the format inenumiis? – moewe Sep 04 '15 at 05:12