diff --git a/frontend/src/scenes/experiments/ExperimentView/components.tsx b/frontend/src/scenes/experiments/ExperimentView/components.tsx
index 2cc4d7ab88baf..3733d024672ba 100644
--- a/frontend/src/scenes/experiments/ExperimentView/components.tsx
+++ b/frontend/src/scenes/experiments/ExperimentView/components.tsx
@@ -377,7 +377,8 @@ export function ActionBanner(): JSX.Element {
// Further collection unlikely to change the result -> recommmend cutting the losses
if (
experimentInsightType === InsightType.FUNNELS &&
- funnelResultsPersonsTotal > Math.min(recommendedSampleSize, 500)
+ funnelResultsPersonsTotal > Math.max(recommendedSampleSize, 500) &&
+ dayjs().diff(experiment.start_date, 'day') > 2 // at least 2 days running
) {
return (
@@ -387,7 +388,7 @@ export function ActionBanner(): JSX.Element {
)
}
- if (experimentInsightType === InsightType.TRENDS && actualRunningTime > Math.min(recommendedRunningTime, 7)) {
+ if (experimentInsightType === InsightType.TRENDS && actualRunningTime > Math.max(recommendedRunningTime, 7)) {
return (
Your experiment has been running long enough, but the results are still inconclusive. Continuing the