Popgot - Shop Smarter for Everyday Essentials

Shop Trash Bags per count with Popgot AI

Our team analyzes thousands of trash bags, using automation and expert review to verify every listing. We delve into specific details, distinguishing true trash disposal bags based on features like bag purpose, closure type (like Drawstring), and bag size capacity, ensuring you only compare relevant products.

Selection Criteria

Cheaper than 93%
Better rated than 79%
Popgot Pick— balances unit price, ratings & size

Here are the 29 products we considered starting at 2.3¢ per ct

2.3¢per ct
1,000
count
$23.28
4.61.7k
samsclub
Member's Mark 10-Gallon Liners 1000ct
2.6¢per ct
1,000
count
$25.99
3.975
amazon
Stock Your Home 6-10 Gal 1000ct Trash Bags
2.7¢per ct
2050
count
$27.46
4.23.4k
amazon
TYPLASTICS 7-10 Gallon Trash Bags 1000ct
2.8¢per ct
500
count
$13.99
4.62.8k
costco
Kirkland 10-Gallon Clear Trash Bags, 500-count
2.9¢per ct
1,000
count
$29.02
4.06.6k
amazon
Aluf Plastics 10 Gallon Trash Bags, 1000 Count
2.9¢per ct
1,000
count
$29.34
4.06.6k
amazon
Aluf Plastics 16 Gallon 1000 Count
3.0¢per ct
1,000
count
$29.99
3.8124
amazon
KAYLOWE 4 Gallon Small Trash Bags 1000 Count
3.2¢per ct
1,000
count
$31.79
4.282
walmart
Plasticplace 7-10 Gallon Trash Bags, 1000 Count
3.2¢per ct
1,000
count
$31.79
4.162
target
Plasticplace 7-10 Gallon Trash Bags, Clear, 1000 Count
3.3¢per ct
1,000
count
$32.99
3.915
walmart
Mop Mob 4 Gallon Clear Trash Bags
3.4¢per ct
1,000
count
$34.34
4.06.6k
amazon
Aluf Plastics 16 Gallon Trash Bags, 1000 Count
3.6¢per ct
1,000
count
$36.30
4.06.6k
amazon
Aluf Plastics 16 Gallon Trash Bags, 1000 Count
3.7¢per ct
1,000
count
$36.66
4.0152
walmart
Karat 12-16 Gallon Clear Trash Bags, 1000 ct
4.0¢per ct
1,000
count
$39.69
4.331
target
Plasticplace 7-10 Gal Black (1000ct)
4.2¢per ct
145
count
$6.02
4.43.6k
amazon
Small Unscented Trash Bags, 145 Count
4.5¢per ct
220
count
$9.99
4.6314
amazon
220 Count 4-Gallon White Trash Bags
4.5¢per ct
440
count
$19.98
4.469
amazon
3 Gallon Clear Trash Bags, 440 Count
4.6¢per ct
330
count
$15.29
Limited time deal
4.517.1k
amazon
Teivio 4 Gallon 330 Count Trash Bags
4.7¢per ct
150
count
$6.99
4.12.7k
amazon
4 Gallon Clear Trash Bags, 150 Count
4.7¢per ct
200
count
$9.48
Ends in17:59:37(function(f) {var _np=(window.P._namespace("GoldboxUDPAssets"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { function isComponentRegistered(componentName) { var isRegistered = false; P.now("registrationStarted:" + componentName).execute(function (loaded) { isRegistered = !!loaded; }); return isRegistered; } function setComponentRegistered(componentName) { P.declare("registrationStarted:" + componentName, true); } if (!isComponentRegistered("count-down-controller-detailpage-dealBadge")) { setComponentRegistered("count-down-controller-detailpage-dealBadge"); P.when('jQuery').register('count-down-controller-detailpage-dealBadge', function($) { function countDown(timer) { var $timer = $(timer); var targetDateStr = $(timer).attr("data-target-time"); var targetDate = Date.parse(targetDateStr); var dealBadgeSupportingText = '#dealBadgeSupportingText'; $(dealBadgeSupportingText).attr("aria-hidden","true"); var interval = null; interval = setInterval(function () { var diffMillis = targetDate - Date.now(); var diffSeconds = Math.floor(diffMillis / 1000); if (diffSeconds < 0) { $timer.text('00:00'); clearInterval(interval); $(dealBadgeSupportingText).removeAttr("aria-hidden"); } else { var hours = Math.floor((diffSeconds / (60 * 60)) % 24); var minutes = Math.floor((diffSeconds / 60) % 60); var seconds = Math.floor(diffSeconds % 60); var hoursStr = ('0' + hours).slice(-2); var minutesStr = ('0' + minutes).slice(-2); var secondsStr = ('0' + seconds).slice(-2); var timeStr = ''; if (hours > 0) { timeStr = [hoursStr, minutesStr, secondsStr].join(':'); } else { timeStr = [minutesStr, secondsStr].join(':'); } $timer.text(timeStr); updateOffscreenText(hours, minutes, seconds) } }, 1000); } var offscreenTextEnum = { hours: 0, minutes: 1, seconds: 2, }; var offscreenTextIDs = [ '#deals_countdown_timer_from_hours_screen_reader_label', '#deals_countdown_timer_from_minutes_without_seconds_screen_reader_label', '#deals_countdown_timer_from_seconds_screen_reader_label', ]; var offscreenTextTemplates = offscreenTextIDs.map(function (id) { return $(id).text() }); var classHidden = 'aok-hidden'; var classOffscreen = 'aok-offscreen'; function updateOffscreenText(hours, minutes, seconds) { var type = getOffscrrenType(hours, minutes); var elementID = offscreenTextIDs[type]; var template = offscreenTextTemplates[type]; var text = template .replace('NO_OF_HOURS', hours) .replace('NO_OF_MINUTES', minutes) .replace('NO_OF_SECONDS', seconds); $(elementID).text(text); showOffscreenElement(elementID); offscreenTextIDs.filter(function (_, idx) { return idx != type; }).forEach(function (id) { return hideOffscreenElement(id) }); if (isTimerOver(hours, minutes, seconds)) { hideOffscreenElement(elementID); } } function getOffscrrenType(hours, minutes) { if (hours > 0) { return offscreenTextEnum.hours; } if (minutes >= 1) { return offscreenTextEnum.minutes; } return offscreenTextEnum.seconds; } function showOffscreenElement(elementID) { $(elementID).removeClass(classHidden).addClass(classOffscreen); } function hideOffscreenElement(elementID) { $(elementID).removeClass(classOffscreen).addClass(classHidden); } function isTimerOver(hours, minutes, seconds) { return hours == 0 && minutes == 0 && seconds == 0; } return { countDown : countDown }; }); } P.when('A', 'count-down-controller-detailpage-dealBadge', 'ready').execute(function(A, countDownController) { var timers = document.querySelectorAll('.detailpage-dealBadge-countdown-timer'); A.each(timers, function(timer) { countDownController.countDown(timer); }); }); }));
4.42.8k
amazon
4 Gallon White Trash Bags 200 Count
4.8¢per ct
320
count
$2.88
4.4469
walmart
Basic 4 Gallon Twist Tie Bags (60 Count)
5.4¢per ct
120
count
$6.49
4.6842
amazon
120 Count 3 Gallon Clear Trash Bags
5.4¢per ct
120
count
$6.49
4.6842
amazon
120 Count 2 Gallon Trash Bags
5.4¢per ct
120
count
$6.49
4.54.3k
amazon
1.2 Gallon 120 Count Clear Trash Bags
5.5¢per ct
100
count
$5.49
4.42.8k
amazon
4 Gallon Small Trash Bags, 100ct
5.9¢per ct
102
count
$5.97
4.6886
amazon
Charmount 1.2 Gallon Trash Bags, 102 Count
Popgot Pick
6.0¢per ct
80
count
$4.83
4.52.5k
walmart
Color Scents 4-Gal Lavender Trash Bags
6.0¢per ct
80
count
$4.83
4.52.1k
walmart
Color Scents 4-Gal Twist Tie Bags
6.2¢per ct
40
count
$2.46
4.77.6k
walmart
Hero 4-Gallon Trash Bags 40 Count