Hi All, I have created a PDF report which details vehicle movements. The PDF Report works well but I would like to look at performing SUM calculations within the report to improve MI but can’t quite work out how.
<<COUNT(FILTER(“Vehicle Movements”, AND ([Searched]=”Yes”,[Date Time]>TODAY())))>>
<<COUNT(FILTER(“Vehicle Movements”, AND ([Searched]=”No”,[Date Time]>TODAY())))>>
These are two items I have within the report (There are more). I would like to perform a division sum within the report. I’ve tried the following:
<<SUM(COUNT(FILTER(“Vehicle Movements”, AND ([Searched]=”Yes”,[Date Time]>TODAY())))/COUNT(FILTER(“Vehicle Movements”, AND ([Searched]=”No”,[Date Time]>TODAY()))))>>
but it says SUM is used incorrectly.