if (window.BEJSSDKObserver === undefined) { (function(BEJSSDKObserver, $, undefined) { var observer = void 0; var listeners = []; var readySet = []; var doc = window.document; var MutationObserver = window.MutationObserver || window.WebKitMutationObserver; function checkSelector(selector, fn, indexList) { var elements = doc.querySelectorAll(selector); for (var i = 0, len = elements.length; i < len; i++) { /* -1 means all instances */ if (indexList != -1 && !(i in indexList)) { continue; } var element = elements[i]; for (var j = 0; j < readySet.length; j++) { if (readySet[j] == element.className || readySet[j] == element.id) { return; } } if (element.className) { readySet.push(element.className); } if (element.id) { readySet.push(element.id); } if (!element.ready || MutationObserver==null) { element.ready = true; fn.call(element, element); } } } function checkListeners() { listeners.forEach(function (listener) { return checkSelector(listener.selector, listener.fn, listener.indexList); }); } function removeListener(selector, fn) { var i = listeners.length; while (i--) { var listener = listeners[i]; if (listener.selector === selector && listener.fn === fn) { listeners.splice(i, 1); if (!listeners.length && observer) { observer.disconnect(); observer = null; } } } } /** * Fire event on first js selector * @param selector string to watch on * @param fn callback function * @param index_list can be undefined which means only first one * or -1 which means all * or a list of allowable indexes */ BEJSSDKObserver.jsElementReady = function(selector, fn, index_list) { if (index_list === undefined) { index_list = []; index_list.push(0); } if (MutationObserver != null) { if (!observer) { observer = new MutationObserver(checkListeners); observer.observe(doc.documentElement, { childList: true, subtree: true }); } listeners.push({ selector: selector, fn: fn, indexList: index_list }); } else { /* <= IE8 */ if (!document.addEventListener) { /* log("<=IE8 attachEvent assignment"); */ document.addEventListener = document.attachEvent; } document.addEventListener("DOMContentLoaded", function(event) { var elements = doc.querySelectorAll(selector); for (var i = 0, len = elements.length; i < len; i++) { /* -1 means all instances */ if (index_list != -1 && !(i in index_list)) { continue; } var element = elements[i]; element.ready = true; fn.call(element, element); } }); } checkSelector(selector, fn, index_list); return function () { return removeListener(selector, fn); }; }; }(window.BEJSSDKObserver = window.BEJSSDKObserver || {})); } var jsElementReady = window.BEJSSDKObserver.jsElementReady; if (window.BELinkBlockGenerator === undefined) { (function(BELinkBlockGenerator, $, undefined) { BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = 100; BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = 200; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE = 0; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE = 1; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE = 2; BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE = 3; BELinkBlockGenerator.REPLACEMENT_STRATEGY_OVERWRITE = 0; BELinkBlockGenerator.REPLACEMENT_STRATEGY_POST_APPEND_ELEMENT = 1; BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_ELEMENT = 2; BELinkBlockGenerator.REPLACEMENT_STRATEGY_PRE_APPEND_PARENT = 3; BELinkBlockGenerator.setMaximumHeadlineLength = function(length) { BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH = length; }; BELinkBlockGenerator.setMaximumDescriptionLength = function(length) { BELinkBlockGenerator.MAXIMUM_DESC_LENGTH = length; }; BELinkBlockGenerator.generateIndividualLinks = function(parentElement, linkStructure, link) { var link_level_element_tag = linkStructure[0]; var link_level_element = document.createElement(link_level_element_tag); var link_attribute_dictionary = linkStructure[1]; var allowable_elements = linkStructure[2]; var children_link_structures = linkStructure[3]; for (var link_attribute_key in link_attribute_dictionary) { link_level_element.setAttribute(link_attribute_key, link_attribute_dictionary[link_attribute_key]); } var added_something = false; if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_URL_TYPE)>=0) { link_level_element.setAttribute('href', link.url); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_HEADLINE_TYPE)>=0 && link.h1) { var headline_text = link.h1; if (headline_text.length > BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) { headline_text = headline_text.substring(0, BELinkBlockGenerator.MAXIMUM_HEADLINE_LENGTH) + '...'; } var text_node = document.createTextNode(headline_text); link_level_element.appendChild(text_node); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_DESCRIPTION_TYPE)>=0 && link.desc) { var desc_text = link.desc; if (desc_text.length > BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) { desc_text = desc_text.substring(0, BELinkBlockGenerator.MAXIMUM_DESC_LENGTH) + '...'; } var text_node = document.createTextNode(desc_text); link_level_element.appendChild(text_node); added_something = true; } if (allowable_elements.indexOf(BELinkBlockGenerator.IND_LINK_BLOCK_TYPE_IMAGE_TYPE)>=0 && link.image) { link_level_element.setAttribute('src', link.image); added_something = true; } /** don't emit for empty links, desc, headline, image except for parent structures where allowable_length=0 */ if (!added_something && allowable_elements.length != 0) { return; } /* go depth first */ for (var childrenIndex=0; childrenIndex .be-ix-link-block{clear:both; } .be-ix-link-block .be-related-link-container{display: flex;justify-content:center; text-align:center; padding: 10px 0;padding-bottom:20px} .be-ix-link-block .be-related-link-container .be-label{display: inline-block;margin-right: 15px; font-style: normal; font-size: 16px; font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif; color: #1E1432 !important; font-weight: 700; line-height: 1.6em;} .be-ix-link-block .be-related-link-container .be-list{list-style:none;margin:0;padding: 0;} .be-ix-link-block .be-related-link-container .be-list .be-list-item{margin:0;padding: 0 0 0px 0;} .be-ix-link-block .be-related-link-container .be-list .be-list-item a{text-transform: none;padding-right: 15px; font-size: 16px; font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif; color: #1E1432; font-weight: 300; line-height: 1.6em;text-decoration:none;} .be-ix-link-block .be-related-link-container .be-list .be-list-item a:hover{opacity: 1;color:#FA505F } .be-ix-link-block .be-related-link-container .be-list{display:flex;width:auto} .be-ix-link-block .be-related-link-container .be-list .be-list-item{display:flex;} .be-ix-link-block .be-related-link-container .be-list .be-list-item:last-child{margin-right:0} @media (max-width: 767px) { .be-ix-link-block .be-related-link-container{ display: block; text-align: left; width: 100%; padding-left: 30px;} .be-ix-link-block .be-related-link-container .be-label {width: 100%;margin:0;padding-bottom:10px} .be-ix-link-block .be-related-link-container .be-list {display: inline-block;width: 100%;} .be-ix-link-block .be-related-link-container .be-list .be-list-item {display: inline-block;margin:0;padding: 0 0 5px 0;} .be-ix-link-block .be-related-link-container .be-list .be-list-item a{padding-right:0px} } NRF and Appriss Retail Report: $743 Billion in Merchandise Returned in 2023 | Appriss Retail

NRF and Appriss Retail Report: $743 Billion in Merchandise Returned in 2023

December 26, 2023

Retailers have been focused on efforts to mitigate returns, as total returns for the industry amounted to $743 billion in merchandise in 2023, according to a report released today by the National Retail Federation and Appriss Retail. As a percentage of sales, the total return rate for 2023 was 14.5%.

According to the report, for every $1 billion in sales, the average retailer incurs $145 million in merchandise returns. Online sales do see a higher return rate, with 17.6% or $247 billion of merchandise purchased online returned. That compares with 10.02% for pure bricks-and-mortar returns (excluding online orders that are returned in-store), or $371 billion.

“Retailers continue to test and implement new ways to minimize losses from returns, particularly those that are fraudulent, while at the same time optimizing the shopping experience for their customers,” said NRF Executive Director of Research Mark Mathews. “Retailer’s efforts include providing greater detailed descriptions on sizing and fit of products for online purchases and requiring a receipt with returned items. As a whole, the industry is prioritizing efforts to reduce the amount of merchandise returned in stores and online.”

This year, return fraud contributed $101 billion in overall losses for retailers. Moreover, for every $100 in returned merchandise, retailers will lose $13.70 to return fraud.

As concerns around return fraud continue to grow, retailers are bolstering their efforts to mitigate the related losses. With increases in both in-store and digital traffic, many retailers are testing in-store policy changes and limiting the flexibility of online returns. Keeping customer satisfaction in mind, retailers are strengthening customer service operations through frictionless retail and a seamless end-to-end user experience.

Among the types of return fraud retailers say they have experienced in the past year, nearly half (49%) cited returns of used, non-defective merchandise, also known as wardrobing, and 44% cited the return of shoplifted or stolen merchandise. Over one-third (37%) said they experienced returns of merchandise purchased on fraudulent or stolen tender and one-fifth (20%) said they have experienced return fraud from organized retail crime groups.

“The continued growth of online channels has had a significant impact on retail sales and returns,” Appriss Retail CEO Michael Osborne said. “One example is our tracking of claims and appeasements, which is a new category in online returns that covers reports for missed, late or damaged deliveries, and is the fastest-growing category for return fraud.”

While the holiday season is one of the biggest sales periods of the year for retailers, they only expect a slight uptick in the return rate compared with the rest of the year. The study finds that $148 billion in holiday merchandise is expected to be returned at a rate of 15.4%. However, retailers anticipate nearly $25 billion in fraudulent returns, which represent 16.5% of total holiday returns. The holiday season, with increased foot traffic, can be exploited by those seeking to make fraudulent returns.

NRF has partnered with Appriss Retail to pair its customers’ returns data with NRF survey responses. Appriss Retail’s customers include 60 of the top 100 retailers in the United States and allow greater granularity in the data. Given the change in methodology, unless otherwise noted, 2023 numbers cannot be compared to the 2022 returns report.

Click here to view the 2023 returns results.

As the leading authority and voice for the retail industry, NRF conducts research throughout the year, staying on the pulse of the industry and consumer behavior as they evolve.

About NRF
The National Retail Federation passionately advocates for the people, brands, policies and ideas that help retail succeed. From its headquarters in Washington, D.C., NRF empowers the industry that powers the economy. Retail is the nation’s largest private-sector employer, contributing $3.9 trillion to annual GDP and supporting one in four U.S. jobs — 52 million working Americans. For over a century, NRF has been a voice for every retailer and every retail job, educating, inspiring and communicating the powerful impact retail has on local communities and global economies. nrf.com

About Appriss Retail
Appriss Retail provides AI-driven analytics and real-time, integrated recommendations focused on identifying and mitigating theft, fraud and abuse, while shaping positive experiences for profitable consumers. Used by more than 60 of the Top 100 omnichannel retailers, the company’s SaaS solutions improve retail profitability by reducing fraud and abuse, minimizing ecommerce claims and appeasements, and preventing losses caused by employee theft and turnover. For more information about Appriss Retail, visit www.apprissretail.com.