@font-face { font-family: 'FontAwesome'; src: url("https://www.dollarama.com/en-CA/locations/fonts/fontawesome-webfont.eot?v=4.7.0"); src: url("https://www.dollarama.com/en-CA/locations/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("(https://www.dollarama.com/en-CA/careers/loc ations/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg"); font-weight: normal; font-style: normal; } @font-face { font-family: 'Glyphicons Halflings'; src: url("https://www.dollarama.com/en-CA/locations/fonts/bootstrap/glyphicons-halflings-regular.eot"); src: url("https://www.dollarama.com/en-CA/locations/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("https://www.dollarama.com/en-CA/careers/locations/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); } .store-locator-hero { background: url("https://www.dollarama.com/en-CA/locations/images/banner-bg.jpg") no-repeat center center; background-size: 100% auto; } .store-locator-locations .search select { background: url( https://www.dollarama.com/en-CA/locations/images/dropdown-arrows.png) no-repeat 90% 55%; } .loading { background-image: url( https://www.dollarama.com/en-CA/locations/images/loading.gif); } .store-locator-locations .stores #list .counter { background-image: url( https://www.dollarama.com/en-CA/locations/images/ellipse-listing.png); } .new-stores-box .stores-box-left { background: #017747 url( https://www.dollarama.com/en-CA/locati ons/images/NewStores.png) no-repeat; background-size: cover; } (function () { // Prevent double wiring if (window.__DFM_WIRED__) return; window.__DFM_WIRED__ = true; var DFMKEY = 'df-messenger-chatBubbleExpansion'; var minWidthOk = window.matchMedia('(min-width: 768px)').matches; // 1) Set a stable session-id on df-messenger (persisted across pages) try { var sid = localStorage.getItem('df_session_id'); if (!sid) { sid = (self.crypto && self.crypto.randomUUID) ? self.crypto.randomUUID() : Math.random().toString(36).slice(2); localStorage.setItem('df_session_id', sid); } var el = document.querySelector('df-messenger'); if (el) el.setAttribute('session-id', sid); } catch (_) { } // 2) Before loading the Messenger, restore expansion state for this session if (minWidthOk) { try { var stateDFM = sessionStorage.getItem(DFMKEY); var bubble = document.getElementById('dfchat'); if (bubble) { if (stateDFM == 'true') bubble.setAttribute('expanded', ''); else bubble.removeAttribute('expanded'); } } catch (_) { } } })(); var IsCareersPage = $("html").hasClass("careers"); var ComingSoonText = "COMING SOON"; $(".header-container").load(jsResPrefix.value + "GetHeaderFooter #consumer-nav", function () { //setHeaderTracking(); var toggleUrl = 'https://www.dollarama.com/fr-CA/carrieres/localisateur/ab/red-deer-2410-50th-ave/'; if (IsCareersPage) { if ("en-US" == "fr-CA") toggleUrl = toggleUrl.replace("/locations/", "/careers/locations/"); else toggleUrl = toggleUrl.replace("/fr/localisateur/", "/fr/carrieres/localisateur/"); } $(".header-container .language").attr('href', toggleUrl ); $("li.hover").on("hover", function () { var el = $(this).find('span'); var classList = el.attr('class').split(/\s+/); $.each(classList, function (index, item) { if (-1 != item.indexOf('icon-')) { el.toggleClass(item + '_hover'); } }); }); $("span.hover").on("hover", function () { var el = $(this); var classList = el.attr('class').split(/\s+/); $.each(classList, function (index, item) { if (-1 != item.indexOf('icon-')) { el.toggleClass(item + '_hover'); } }); }); });

Careerswithin 2 km

within 5 km
within 15 km
Store Phone +18883654266

Hide Map

Dollarama Red Deer, AB

$("footer.footer-container").load(jsResPrefix.value + "GetFooter .footer", function () { //customizations $(this).find(".footer__links-section__newsletter").remove(); $(this).find("a").each(function () { var title = $(this).attr("title"); var lang = $("html").attr("lang"); if (title) { var giftCardUrl = (lang === "en") ? "https://www.dollarama.com/en-ca/gift-cards/" : "https://www.dollarama.com/fr-ca/cartes-cadeaux/"; if (title.indexOf("Gift Cards") !== -1 || title.indexOf("Cartes-cadeaux") !== -1) { $(this).removeAttr("onclick"); $(this).attr("href", giftCardUrl); } var shippingFeesUrl = (lang === "en") ? "https://www.dollarama.com/en-ca/faq/website/shipping/" : "https://www.dollarama.com/fr-ca/faq/site-web/livraison/"; if (title.indexOf("ShippingPopup") !== -1) { $(this).removeAttr("onclick"); $(this).attr("href", shippingFeesUrl); } } }); loadScriptOnce('https://www.dollarama.com/dist/assets/footer-Srk2Jg5g.js', 'external-footer-script'); }); $("footer.footer-bottom-container").load(jsResPrefix.value + "GetFooter #footer-bottom-nav, #flatfee-lookup-modal, #giftcard-modal", function () { var scripts = document.getElementById('scripts'); }); /* Loads a script once, with optional id guard */ function loadScriptOnce(src, id) { return new Promise((resolve, reject) => { if (id && document.getElementById(id)) { return resolve('already-loaded'); } const s = document.createElement('script'); s.src = src; if (id) s.id = id; s.async = true; s.onload = () => resolve('loaded'); s.onerror = (e) => reject(new Error(`Failed to load ${src}`)); document.head.appendChild(s); }); }
    Assistant Store Manager
  • The Assistant Store Manager provides support to the Store Manager in overseeing the daily retail store operations, and in the absence of the Store Manager, acts as the Manager on Duty (MOD). The Assistant Store Manager makes sure that company rules and regulations are explained, understood and followed by all team members, that inventory counts are done in a prompt and precise manner in order to have proper resupply of goods and ensures that established merchandising practices are followed. The Assistant Store Manager participates in recruitment and training activities of new employees.

    Preferred candidate

    • Minimum of two (2) years’ experience in the retail industry;
    • Experience in team management;
    • Work schedule to be determined based on store operational needs;
    • Ability to efficiently organize time and manage priorities;
    • Good leadership and communication skills; and
    • Ability to work in a dynamic and fast paced environment.
  • Apply

About the store

Dollarama is Canada’s leading dollar store operator, with more than 1,000 locations across the country. Our store at 9530 120 St, Surrey—and all of our stores across the country—provides customers with compelling value in a convenient location. Our aim is to create a consistent shopping experience, offering a broad assortment of everyday consumer products, general merchandise and seasonal items. Products are sold in individual or multiple units at select fixed price-points up to $5.00.