I have a group summary item that has the following expression:
= (Sum(Fields.ActualAttendance) / Fields.DaysTaught)
Actual attendance and DaysTaught are integers. i would like to display the result with single precision decimal. How can I do this in an expression? The problem is that the integer arithmetic is returning a tuncated integer so using the format option always display .0
What I need is to cast the integers to decimals beforehand.
Thanks
= (Sum(Fields.ActualAttendance) / Fields.DaysTaught)
Actual attendance and DaysTaught are integers. i would like to display the result with single precision decimal. How can I do this in an expression? The problem is that the integer arithmetic is returning a tuncated integer so using the format option always display .0
What I need is to cast the integers to decimals beforehand.
Thanks