I am going crazy over a calculation I am trying to do in Report Builder.
I have a database that records weather details each day. I want to calculate average temperatures and the like, and put this into the footer.
The function RecordCounter counts records correctly. The function AccumulationLOWreport sums the daily minimum temperatures. This seems to work correctly in that I can put this in the footer and get the sum of temperatures.
To work out the average, I put a field in the footer. In the "Data" tab I choose "Field or Formula" and enter [AccumulationLOWReport]/[RecordCounter] . When I run the report it returns 0.
I have tried all of the following, with the same result
' [AccumulationLOWReport]/[RecordCounter]'
' [AccumulationLOWReport]'/'[RecordCounter]'
= [AccumulationLOWReport]/[RecordCounter]
Can someone please tell me what I am doing wrong?