dbustin Posted December 7, 2010 Share Posted December 7, 2010 I need to be able to round the result of a rule to the nearest dollor. Below is the rule that I have currently. One of the results for this is 37.5 and I need it to be 38. return Field("Amount") * 1.5; Thank in advance Link to comment Share on other sites More sharing options...
jleger Posted December 7, 2010 Share Posted December 7, 2010 return Round((Field("Amount") * 1.5),0) -Joe Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.