diff --git a/web/libs/datamanager/src/components/CellViews/AgreementSelected.jsx b/web/libs/datamanager/src/components/CellViews/AgreementSelected.jsx
index 3beb08426cf4..c89c36c3750e 100644
--- a/web/libs/datamanager/src/components/CellViews/AgreementSelected.jsx
+++ b/web/libs/datamanager/src/components/CellViews/AgreementSelected.jsx
@@ -1,6 +1,8 @@
 import { useSDK } from "../../providers/SDKProvider";
 import { isDefined } from "../../utils/utils";
 import { useState, useEffect } from "react";
+import { Tooltip } from "@humansignal/ui";
+import { IconInfoOutline } from "@humansignal/icons";
 
 const LOW_AGREEMENT_SCORE = 33;
 const MEDIUM_AGREEMENT_SCORE = 66;
@@ -25,11 +27,20 @@ const formatNumber = (num) => {
 export const AgreementSelected = (cell) => {
   const { value, original: task } = cell;
 
-  const score = (
+  const threshold = window.APP_SETTINGS?.agreement_selected_threshold;
+  const overThreshold = Number(task?.total_annotations) > Number(threshold);
+
+  const content = overThreshold ? (
+