Der Vergleich in ifthenelse geht nur mit Integerzahlen. Dein \Rx ist aber eine Dezimalzahl. Du must also einen anderen Test verwenden. Z.B. \lengthtest oder den ifthenelse-Befehl von pgf. Ich würde expl3 + \fp_compare:NTF benutzen.

Code:
\documentclass{article}

\usepackage{tikz,ifthen,expl3}

\ExplSyntaxOn
\let\fpcompareTF\fp_compare:nTF
\ExplSyntaxOff
	
\begin{document}
\ifthenelse{1<7}{yes}{no}
%\ifthenelse{1.1<7}{yes}{no} %fehler

\ifthenelse{\lengthtest{1pt<7pt}}{yes}{no}
\ifthenelse{\lengthtest{1.1pt<7pt}}{yes}{no} 


\pgfmathifthenelse{1<7}{"yes"}{"no"}\pgfmathresult, 
\pgfmathifthenelse{1.1<7}{"yes"}{"no"}\pgfmathresult

\fpcompareTF{1 < 7}{yes}{no}, 
\fpcompareTF{1.1 < 7}{yes}{no} 

\end{document}