Sphere Las Vegas Shows, Concerts & Events Schedule 2026/2027

Step into the future of live entertainment with the complete Sphere Las Vegas shows 2026/2027 lineup, where groundbreaking technology meets world-class performances. This page is designed to give you a clear, organized overview of everything happening inside the Sphere throughout the year — from headline concerts and limited-run residencies to immersive visual productions created specifically for this iconic venue.

Whether you’re planning months in advance or building your Vegas itinerary right now, you’ll find the most relevant dates, performance details, and event highlights all in one place.

/* ========================================================= Sphere Months Carousel — jcarousel style (FINAL) Scoped ONLY to #sphereMonthsCal ========================================================= */ #sphereMonthsCal.carousel-wrapper{ width: 100% !important; /* ✅ يملى عرض الصفحة */ display: flex !important; align-items: center !important; overflow: visible !important; } /* arrows (MATCH OLD CAROUSEL 1:1) */ #sphereMonthsCal .jcarousel-prev, #sphereMonthsCal .jcarousel-next{ flex: 0 0 30px !important; /* ✅ كان 40 */ width: 30px !important; /* ✅ كان 40 */ min-width: 30px !important; /* ✅ كان 40 */ height: 120px !important; line-height: 120px !important; text-align: center !important; font-size: 40px !important; /* ✅ كان 24 */ font-weight: normal !important; /* ✅ نفس القديم */ font-family: inherit !important; /* ✅ نفس خط الموقع */ background: #3f63ae !important; border: 0 !important; color: #ffffff !important; outline: none !important; padding: 0 !important; cursor: pointer !important; border-radius: 0 !important; /* ✅ كان 10: نخليه زي القديم */ } #sphereMonthsCal .jcarousel-prev{ margin-right: 7px !important; } #sphereMonthsCal .jcarousel-next{ margin-left: 7px !important; } /* track */ #sphereMonthsCal .jcarousel{ flex: 1 1 auto !important; min-width: 0 !important; position: relative !important; overflow-x: auto !important; overflow-y: hidden !important; scrollbar-width: none !important; } #sphereMonthsCal .jcarousel::-webkit-scrollbar{ display: none !important; } /* ul: fit content (no fake empty space) */ #sphereMonthsCal .jcarousel ul{ width: fit-content !important; /* ✅ يمنع المساحة الوهمية بعد ديسمبر */ display: flex !important; /* ✅ بدل float */ gap: 14px !important; /* ✅ نفس المسافة بين العناصر */ list-style: none !important; margin: 0 !important; padding: 0 14px !important; /* ✅ مسافة قبل أول عنصر وبعد آخر عنصر */ position: relative !important; } /* li */ #sphereMonthsCal .jcarousel ul li{ width: 105px !important; /* ✅ يمنع كسر Sphere */ min-width: 105px !important; border: transparent !important; border-bottom: 2px solid #28a7df !important; padding: 15px 5px !important; text-align: center !important; background: transparent !important; box-sizing: border-box !important; float: none !important; /* ✅ لأننا استخدمنا flex */ margin: 0 !important; /* ✅ لأن gap هو اللي بيدير المسافة */ } /* link */ #sphereMonthsCal .jcarousel ul li a{ display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 8px !important; text-decoration: none !important; color: #6b6c7a !important; } /* hover */ #sphereMonthsCal .jcarousel ul li:hover{ background-color: #B3BFC5 !important; } /* text */ #sphereMonthsCal .m{ font-size: 16px !important; font-weight: 650 !important; color: #6b6c7a !important; white-space: nowrap !important; } #sphereMonthsCal .d{ font-size: 25px !important; font-weight: 800 !important; color: #6b6c7a !important; line-height: 1.1 !important; white-space: nowrap !important; /* ✅ يمنع Sphere تتقسم */ } #sphereMonthsCal .w{ font-size: 16px !important; font-weight: 650 !important; color: #6b6c7a !important; white-space: nowrap !important; } /* mobile tweak */ @media (max-width: 760px){ #sphereMonthsCal .jcarousel-prev, #sphereMonthsCal .jcarousel-next{ width: 30px !important; /* ✅ خليه زي القديم حتى على الموبايل */ min-width: 30px !important; flex-basis: 30px !important; height: 110px !important; line-height: 110px !important; font-size: 50px !important; /* ✅ نفس القديم */ border-radius: 0 !important; /* ✅ نفس القديم */ } #sphereMonthsCal .jcarousel ul li{ width: 98px !important; min-width: 98px !important; } #sphereMonthsCal .d{ font-size: 23px !important; } } document.addEventListener(“DOMContentLoaded”, function () { const root = document.getElementById(“sphereMonthsCal”); const jc = document.getElementById(“sphereMonthsJc”); if (!root || !jc) return; const prev = root.querySelector(“.jcarousel-prev”); const next = root.querySelector(“.jcarousel-next”); const ul = jc.querySelector(“ul”); if (!prev || !next || !ul) return; jc.style.overflowX = “auto”; jc.style.overflowY = “hidden”; jc.style.scrollBehavior = “smooth”; function step() { return Math.max(260, Math.floor(jc.clientWidth * 0.75)); } function maxScroll() { return Math.max(0, jc.scrollWidth – jc.clientWidth); } function scrollToX(x, behavior = “smooth”) { const clamped = Math.min(Math.max(0, x), maxScroll()); jc.scrollTo({ left: clamped, behavior: behavior }); } function updateArrows() { const x = jc.scrollLeft; const max = maxScroll(); const EPS = 2; prev.disabled = x = max – EPS; prev.style.opacity = prev.disabled ? “0.45” : “1”; next.style.opacity = next.disabled ? “0.45” : “1”; prev.style.cursor = prev.disabled ? “default” : “pointer”; next.style.cursor = next.disabled ? “default” : “pointer”; } function rotateToCurrentMonthAsFirst() { const slugs = [ “january”, “february”, “march”, “april”, “may”, “june”, “july”, “august”, “september”, “october”, “november”, “december” ]; const currentSlug = slugs[new Date().getMonth()]; const items = Array.from(ul.querySelectorAll(“li”)); const idx = items.findIndex(function (li) { const a = li.querySelector(“a[href]”); return a && a.getAttribute(“href”).includes(“/” + currentSlug + “/”); }); if (idx > 0) { for (let i = 0; i < idx; i++) { ul.appendChild(items[i]); } } scrollToX(0, "auto"); } prev.addEventListener("click", function () { scrollToX(jc.scrollLeft – step()); }); next.addEventListener("click", function () { scrollToX(jc.scrollLeft + step()); }); jc.addEventListener("scroll", function () { requestAnimationFrame(updateArrows); }); window.addEventListener("resize", updateArrows); rotateToCurrentMonthAsFirst(); updateArrows(); });

The continuously updated Sphere Las Vegas schedule allows visitors to track newly announced performances, returning artists, and extended show runs throughout 2026/2027. Because demand for major dates can shift quickly, having access to a structured calendar view helps you compare options, evaluate availability, and secure tickets before popular events sell out.

For music fans, the dedicated The Sphere concert schedule offers a focused look at touring artists, global superstars, and exclusive residencies performing under the venue’s revolutionary dome. With immersive sound, 360-degree visuals, and next-generation production, concerts at the Sphere redefine what a live performance can feel like.

Beyond music, the expanding collection of Sphere Las Vegas events showcases the venue’s versatility, featuring cinematic experiences, special presentations, and large-scale productions built specifically for the Sphere’s immersive capabilities. This variety ensures there is something on the calendar for every type of visitor, from casual tourists to dedicated entertainment enthusiasts.

When planning ahead, reviewing the full Sphere Las Vegas 2026/2027 schedule gives you a strategic advantage. You can align your travel dates with the most anticipated performances, compare multiple event options across different months, and confidently organize your Las Vegas trip around one of the city’s most sought-after entertainment destinations while securing your Sphere Las Vegas tickets at the right time.