diff --git a/plugins/Insights/InsightReport.php b/plugins/Insights/InsightReport.php
index 759f7bf5a8386a2a2a02f18bc1aed723ca0e716a..7c62df9344d71a362caf61c4db2b69c9bbee786d 100644
--- a/plugins/Insights/InsightReport.php
+++ b/plugins/Insights/InsightReport.php
@@ -64,7 +64,7 @@ class InsightReport
             $minNewPercent         = 5;
         }
 
-        if ($totalValue < 200) {
+        if ($totalValue < 200 && $totalValue > 0) {
             // force at least a change of 2 visits
             $minMoversPercent = (int) ceil(2 / ($totalValue / 100));
             $minNewPercent    = max($minNewPercent, $minMoversPercent);