Re: Record Count - Calculation
Reply #1 –
@pierremataias you will have to do your calculations using SQL. you have to make sure you have set ProgressBar to True and ProgressMaxValue to 100 or the max value you want to use. The below code has not been tested but should work. Please replace the table name and the status field with yours.
SELECT (((SELECT COUNT(*) FROM table WHERE Status = 'completed') / (SELECT COUNT(*) FROM table)) * 100) AS num