Is this what you are after?
// form1.page1.subform1.discount::calculate - (FormCalc, client)
if (HasValue(totalPrice)) then
if (totalPrice > 10 and totalPrice < 20) then
$.rawValue = totalPrice * 0.01
else
if (totalPrice > 19 and totalPrice < 30) then
$.rawValue = totalPrice * 0.02
else
if (totalPrice > 29) then
$.rawValue = totalPrice * 0.03
endif
endif
endif
else
$.rawValue = null
endif
Steve