\r\n \r\nSales for Q2 2016 increased .8% overall, while online comparable sales increased by an exciting 17%. What does Joly attribute the continued success Best Buy has enjoyed over the last three years? The CEO points to three key competitive advantages that helped the retailer gain customers, increase the bottom line, and provide a shopper experience that is difficult to replicate. \r\n \r\nHere are Joly's three keys to success: \r\n \r\n1. Serve customers anywhere, anytime. While servicing the shop anywhere customer is the cornerstone of any successful omnichannel retailing strategy, actually providing the experience effectively continues to be a pain point for many retailers. In addition to continued improvements to its e-commerce platform Best Buy has enhanced the digital experience with the release of a new mobile app. \r\n \r\nAn exciting e-commerce experience and a shiny new mobile app does not necessary guarantee omnichannel success, but when it is paired with a dynamic in-store experience the foundation for continued financial success is solidified. \r\n \r\n\"We continue to leverage our ship-from-store, digital marketing and enhanced website functionality to drive a 17% increase in domestic comparable online sales,\" Joly said. \"This growth was driven, number one, by a significantly increased number of our online customers, who received and took advantage of our free two-day shipping promise, enabled by enhancements through our ship-from-store capability and supply-chain investments that are driving improved speed, convenience and reliability. Number two, increased by the increased visibility of open-box and clearance inventory. And number three by the expansion of online-only flash sales.\" \r\n \r\n2. Unique market position. Due to its wide merchandise assortment and the ability to interact with products on the sales floor Best Buy attracts plenty of early technology adopters. Tech junkies are flocking to Best Buy not just for its wide assortment and competitive pricing, but for the unique in-store experience the retailer provides. \r\n \r\n\"We've always believed that as a result of these trends in consumer behavior, the store experience needed to be so much better,\" Joly said. \"When the customer gets to the store, she has done a lot of research and she's much more educated than maybe a few years ago. And so it's maybe that in some cases we see fewer trips to the store, because so much time has been spent before the store. And so the focus in the store is on the customer experience. We've invested significantly in the physical experience in the stores, and candidly, it is so helpful. You cannot use your senses online to see the difference in picture quality of the TV or the sound quality of a headphone. You really have to go to the store.\" \r\n \r\n3. Vendor partnerships. Not only does Best Buy have a wide assortment of cutting edge technology its vendor partners are making significant material investments in Best Buy's stores to enhance the shopping experience and showcase their latest technology. \r\n \r\n\"With these partnerships, we're able to bring to life interactive technology experiences that again make the Best Buy operating model more relevant for customers,\" Joly said. \"Our vendor partnerships are continuing to grow, confirming that they're bringing value not only to our customers and Best Buy, but also to our vendor partners.\" \r\n \r\nIn addition, Best Buy is continuing to extend its relationships with vendors through increased service offerings. For example the electronics retailer will begin selling AppleCare in Q3, and will roll out its Apple-authorized service provider capabilities with 50 in-store pilots before the holiday shopping season."}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
Best Buy CEO Hubert Joly Outlines Three Keys to Success
Best Buy CEO Hubert Joly Outlines Three Keys to Success
Tim Denman
9/8/2015
Since CEO Hubert Joly took the reins three years ago Best Buy has been reborn. The once struggling electronics retailer is now the darling of the segment and continues to see sales grow quarter after quarter.
Sales for Q2 2016 increased .8% overall, while online comparable sales increased by an exciting 17%. What does Joly attribute the continued success Best Buy has enjoyed over the last three years? The CEO points to three key competitive advantages that helped the retailer gain customers, increase the bottom line, and provide a shopper experience that is difficult to replicate.
Here are Joly's three keys to success:
1. Serve customers anywhere, anytime. While servicing the shop anywhere customer is the cornerstone of any successful omnichannel retailing strategy, actually providing the experience effectively continues to be a pain point for many retailers. In addition to continued improvements to its e-commerce platform Best Buy has enhanced the digital experience with the release of a new mobile app.
An exciting e-commerce experience and a shiny new mobile app does not necessary guarantee omnichannel success, but when it is paired with a dynamic in-store experience the foundation for continued financial success is solidified.
"We continue to leverage our ship-from-store, digital marketing and enhanced website functionality to drive a 17% increase in domestic comparable online sales," Joly said. "This growth was driven, number one, by a significantly increased number of our online customers, who received and took advantage of our free two-day shipping promise, enabled by enhancements through our ship-from-store capability and supply-chain investments that are driving improved speed, convenience and reliability. Number two, increased by the increased visibility of open-box and clearance inventory. And number three by the expansion of online-only flash sales."
2. Unique market position. Due to its wide merchandise assortment and the ability to interact with products on the sales floor Best Buy attracts plenty of early technology adopters. Tech junkies are flocking to Best Buy not just for its wide assortment and competitive pricing, but for the unique in-store experience the retailer provides.
"We've always believed that as a result of these trends in consumer behavior, the store experience needed to be so much better," Joly said. "When the customer gets to the store, she has done a lot of research and she's much more educated than maybe a few years ago. And so it's maybe that in some cases we see fewer trips to the store, because so much time has been spent before the store. And so the focus in the store is on the customer experience. We've invested significantly in the physical experience in the stores, and candidly, it is so helpful. You cannot use your senses online to see the difference in picture quality of the TV or the sound quality of a headphone. You really have to go to the store."
3. Vendor partnerships. Not only does Best Buy have a wide assortment of cutting edge technology its vendor partners are making significant material investments in Best Buy's stores to enhance the shopping experience and showcase their latest technology.
"With these partnerships, we're able to bring to life interactive technology experiences that again make the Best Buy operating model more relevant for customers," Joly said. "Our vendor partnerships are continuing to grow, confirming that they're bringing value not only to our customers and Best Buy, but also to our vendor partners."
In addition, Best Buy is continuing to extend its relationships with vendors through increased service offerings. For example the electronics retailer will begin selling AppleCare in Q3, and will roll out its Apple-authorized service provider capabilities with 50 in-store pilots before the holiday shopping season.