Calculate the average completion rate of scorecards.
SELECT AVG(completed_scorecards / total_scorecards) * 100 as avg_completion_rate FROM (SELECT user_id, COUNT(DISTINCT scorecard_id) as total_scorecards, COUNT(DISTINCT CASE WHEN completed_at IS NOT NULL THEN scorecard_id END) as completed_scorecards FROM answered_scorecards GROUP BY user_id) as subquery
Connect 300+ sources, serve any BI tool, and give every AI agent one governed endpoint to read, and write back where the app supports it.