How to test the value of a number
Code
<#if (myvalue?number > 10)>
</#if>
NB: You must cast your variable to a number since any variable of a process is a string
NB2: You must surround your condition with parenthesis because of the ">" sign in your condition
Please give details of the problem