Popgot - Shop Smarter for Everyday Essentials

Shop Dry Erase Markers per count with Popgot AI

Popgot AI exhaustively searches thousands of products to ensure you have comprehensive data. Our analysis examines dozens of product dimensions to determine relevance, extracts precise quantities and unit prices to help you find the best value, and provides our Popgot Pick recommendation—the optimal balance of unit price, ratings, and size. With no sponsored results, we show you the complete table of analyzed products so you can make the best decision for your needs.

Selection Criteria

Cheaper than 74%
Better rated than 91%
Popgot Pick— balances unit price, ratings & size

Here are the 30 products we considered starting at 8.7¢ per ct

* We may earn a small commission from affiliate links below at no cost to you.

8.7¢per ct
320
count
$27.99
3.813
amazon
Kosiz 320 Pcs Magnetic Dry Erase Markers
9.3¢per ct
300
count
$27.99
3.814
amazon
Crtiin 300 Pack Colorful Dry Erase Markers
9.4¢per ct
320
count
$29.99
3.813
amazon
Kosiz 320 Pcs Dry Erase Markers
11¢per ct
200
count
$21.99
4.379
amazon
Kosiz 200-Pack Magnetic Dry Erase Markers
12¢per ct
200
count
$23.99
4.379
amazon
Kosiz 200 Fine Point Dry Erase Markers
12¢per ct
200
count
$24.99
4.3471
amazon
200 Pcs Black Magnetic Dry Erase Markers
13¢per ct
200
count
$25.99
4.670
amazon
Beieverluck 200pc Magnetic Dry Erase Markers
13¢per ct
200
count
$25.99
4.379
amazon
Kosiz 200 Magnetic Dry Erase Markers
14¢per ct
72
count
$9.99
4.4377
amazon
72 Pcs Black Magnetic Dry Erase Markers
15¢per ct
102
count
$14.95
4.63
amazon
102 Black Magnetic Fine Tip Markers
15¢per ct
100
count
$14.99
4.4674
amazon
RETON 100 Black Dry Erase Markers
17¢per ct
100
count
$16.99
4.3471
amazon
100 Pcs Black Magnetic Dry Erase Markers
18¢per ct
108
count
$18.99
4.533
amazon
108 Black Fine Tip Markers
18¢per ct
102
count
$17.99
4.565
amazon
102 Black Chisel Tip Dry Erase Markers
18¢per ct
50
count
$8.99
4.3471
amazon
50 Black Magnetic Dry Erase Markers
18¢per ct
144
count
$25.99
4.488
amazon
Dry Erase Markers 144 Pack Chisel Tip
18¢per ct
120
count
$21.99
4.623
amazon
Dabo&Shobo 120 Black Chisel Markers
19¢per ct
108
count
$19.99
4.7278
amazon
Black Dry Erase Markers 108-Ct Chisel
19¢per ct
108
count
$19.99
4.2289
amazon
108 Pack Black Fine Tip Markers
19¢per ct
150
count
$27.99
4.739
amazon
Black Dry Erase Markers, 150 Count
37¢per ct
12
count
$4.48
4.527
samsclub
Universal Black Dry Erase Markers Dozen
40¢per ct
12
count
$4.79
4.468
amazon
HANWER 12 Fine Tip Dry Erase Markers
40¢per ct
12
count
$4.79
4.31.2k
amazon
MaxGear 12 Count Black Dry Erase Markers
42¢per ct
12
count
$5.09
4.4747
amazon
12-Color Magnetic Fine Tip Dry Erase Markers
50¢per ct
12
count
$5.98
Ends in21:54:41(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.621.8k
amazon
Volcanics Dry Erase Markers Box of 12
Popgot Pick
50¢per ct
12
count
$5.99
4.615.9k
amazon
Volcanics Black Fine Dry Erase 12pk
50¢per ct
12
count
$5.99
4.510.2k
amazon
Volcanics 12 Fine Tip Dry Erase Markers
51¢per ct
12
count
$6.17
4.534.9k
amazon
Amazon Basics Dry Erase Markers, 12 Pack
58¢per ct
12
count
$6.90
Limited time deal
4.633.2k
amazon
Amazon Basics Dry Erase Markers, Red, Pack of 12
63¢per ct
8
count
$5.04
4.51.3k
amazon
8 Magnetic Fine Tip Dry Erase Markers