T-Mobile - Investor Relations (2024)

Events

View All Events

News

View All News

' + '

' + '

' + '

' + '{{date.date}} {{date.time}}' + '{{title}}' + '

' + '

' + '{{#isFuture}}' + '

' + ''+ 'Add to Calendar'+ '' + '

    ' + '
  • ' + '' + '' + 'Add to Apple Calendar' + '' + '
  • ' + '
  • ' + '' + '' + 'Add to Google Calendar' + '' + '
  • ' + '
  • ' + '' + '' + 'Add to Microsoft Outlook' + '' + '
  • ' + '
  • ' + '' + '' + 'Add to iCalendar' + '' + '
  • ' + '

' + '

' + '{{/isFuture}}' + '{{#webcast}}' + '

' + '' + 'Webcast' + '(opens in new window)'+ '' + '

' + '{{/webcast}}' + '

' + '

' + '

' + '{{/items}}' + '{{^items}}' + '

There are no events scheduled.

'+ '{{/items}}' /* beautify preserve:end */ ), complete: function(e) { q4Defaults.addToCalendar($(e.target).find('.module_add-to-calendar')); }});$('.module-news-latest .module_container--content').news({ dateFormat: 'MM d, yy', showAllYears: true, limit: 3, append: false, template: ( /* beautify preserve:start */ '{{#items}}' + '

' + '

'+ '

' + '{{date}}' + '

' + '

' + '{{title}} {{#blank}}(opens in new window){{/blank}}' + '

' + '

' + '

'+ '{{/items}}' /* beautify preserve:end */ ), beforeRender: function(e, data) { $.each(data.items, function(idx, item) { var url = item.url.toLowerCase().split('.'); if (url[url.length - 1] == 'pdf') { item.blank = true; } }); }, complete: function(e) { }});

Latest Quarterly Results

', loadingMessage: '

Loading slider...

', contentSources: { "Financials": { type: 'financials', reportTypes: ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], label: 'financials' }, 'Other: news': { type: 'news', tags: ['financials'], label: 'other', limit: 3, }, 'Other: webcast': { type: 'events', tags: ['financials'], label: 'webcast' }, 'Other: presentation': { type: 'presentations', tags: ['financials'], label: 'other' }, 'SEC: quarterly filing': { type: 'sec', symbol: SECCONFIG.cik, excludeNoDocuments: true, includeHtmlDocument: true, filingTypes: ['10-K', '10-K/A', '10-Q'], exchange: 'CIK', label: 'sec' }, "News": { type: 'news', loadShortBody: false, tags: ['earnings', 'financials'], label: 'news' }, }, template: ( /* beautify preserve:start */ '{{#quartersWithItems.length}}'+ '{{#quartersWithItems}}'+ '

{{shortType}} {{fiscalYear}}

'+ '{{/quartersWithItems}}'+ '

'+ '

'+ '{{#quartersWithItems}}'+ '{{#.}}

'+ '

'+ '

Earnings Documents

'+ '{{#docsTemplate}}'+ '

' + '

' + '

'+ '{{docTitle}}' + '

'+ '

'+ '{{#docs}}' + '

'+ ''+ // ''+ '{{format}}' + '{{#blank}}(opens in new window){{/blank}}' + ''+ '

'+ '{{/docs}}' + '

'+ '

' + '

' + '{{/docsTemplate}}'+ // '
'+ // '
'+ // '

'+ // '

Related Information

'+ // '

' + // '

' + // '

'+ // 'SEC Filings' + // '

'+ // '

'+ // '

'+ // ''+ // ''+ // // '>'+ // ''+ // '

'+ // '

'+ // '

'+ // '

'+ // '

'+ '

{{/.}}'+ '{{/quartersWithItems}}'+ '

'+ '{{/quartersWithItems.length}}'+ '{{^quartersWithItems.length}}'+ '

No financial quarters found.

'+ '{{/quartersWithItems.length}}' /* beautify preserve:end */ ), beforeRender: function (e, data) { //console.log(data) data.quartersWithItems = []; var quarterArray = [], secQuarterlyRange = { 'Q1': { monthStart: 1, monthEnd: 4 }, 'Q2': { monthStart: 5, monthEnd: 7 }, 'Q3': { monthStart: 8, monthEnd: 10 } }; function addSortGetIndex(value, array) { array.push(value); array.sort().reverse(); return array.indexOf(value); } function makeTargetBlank(doc) { if (doc.docUrl) { var url = doc.docUrl.toLowerCase().split('.'); if (url[url.length - 1] != 'aspx') { doc.blank = true; } } } function findDocIndex(index, item) { return data.quartersWithItems[index].docs.findIndex(function (doc) { return doc.docCategory == item.docCategory; }); } function setupItems(item) { if (item.contentSourceID == 'Financials') { quarterArray.push(item.fiscalYear + ' ' + item.shortType); data.quartersWithItems.push(item); } else if (item.contentSourceID.startsWith('SEC') && WIDGETSETUP.useSec) { setupSec(item); setupSecDocs(item); addSecItem(item); } else if (item.contentSourceID.startsWith('Other') && WIDGETSETUP.useOther) { $.each(item.tags, function (i, tag) { if (tag.startsWith('fin-')) { setupOther(item, tag); } }); } } function setupSec(item) { if (item.description === 'Annual Report') { item.fiscalYear = SECCONFIG.secAnnualSameYear ? item.year : item.year - 1; item.shortType = 'Q4'; item.docCategory = 'tenk'; } else { var filingMonth = new Date(item.date).getMonth(); item.fiscalYear = item.year; item.docCategory = 'tenq'; if (filingMonth >= secQuarterlyRange.Q1.monthStart && filingMonth <= secQuarterlyRange.Q1.monthEnd) { item.shortType = 'Q1'; } else if (filingMonth >= secQuarterlyRange.Q2.monthStart && filingMonth <= secQuarterlyRange.Q2.monthEnd) { item.shortType = 'Q2'; } else if (filingMonth >= secQuarterlyRange.Q3.monthStart && filingMonth <= secQuarterlyRange.Q3.monthEnd) { item.shortType = 'Q3'; } } } function setupSecDocs(item) { $.each(SECCONFIG.secFilingTypes[item.type].preferredDocs, function (x, prefDoc) { var found = false; $.each(item.docs, function (j, secDoc) { if (prefDoc === secDoc.docType) { secDoc.docType == "CONVPDF" ? secDoc.docType = "PDF" : secDoc.docType = secDoc.docType; item.docType = secDoc.docType; item.docUrl = secDoc.docUrl; found = true; } }); if (found) return false; }); } function addSecItem(item) { var quarterIndexSec = $.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray); if (quarterIndexSec > -1) { var secDocIndex = findDocIndex(quarterIndexSec, item); if (secDocIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksSec) data.quartersWithItems[quarterIndexSec].docs.splice(secDocIndex, 1, item); } else { data.quartersWithItems[quarterIndexSec].docs.push(item); } } else { var secQuarter = item.fiscalYear + ' ' + item.shortType, secIndex = addSortGetIndex(secQuarter, quarterArray), newSecItem = { shortType: item.shortType, fiscalYear: item.fiscalYear, docs: [item] }; data.quartersWithItems.splice(secIndex, 0, newSecItem); } } function setupOther(item, details) { if (item.tags.indexOf('transcript') > -1) { item.docCategory = 'transcript'; } else { item.docCategory = item.contentSourceID.replace('Other: ', ''); } if (item.docCategory == 'webcast' && item.docs) { $.each(item.docs, function (ind, doc) { doc.title = doc.title.toLowerCase(); if (doc.title.includes('transcript')) { if (item.webcast) { doc.contentSourceID = 'Other: transcript'; doc.tags = item.tags; var otherTranscript = { id: 'Other: transcript', label: 'other', items: [] }; otherTranscript.items.push(doc); data.sourcesWithItems.push(otherTranscript); } else { item.docCategory = 'transcript'; item.url = doc.url; item.size = doc.size; } } }); } if (item.webcast) { item.docUrl = item.webcast; } else if (!item.docUrl && item.url) { item.docUrl = item.url; } var detailsArr = details.split('-'), itemYear = detailsArr[1], shortType = detailsArr[2].toUpperCase(), quarterIndex = $.inArray((itemYear + ' ' + shortType), quarterArray); if (quarterIndex > -1) { var docIndex = findDocIndex(quarterIndex, item); if (docIndex > -1) { if (!WIDGETSETUP.onlyFillBlanksOther) data.quartersWithItems[quarterIndex].docs.splice(docIndex, 1, item); } else { data.quartersWithItems[quarterIndex].docs.push(item); } } else { var otherQuarter = itemYear + ' ' + shortType, otherIndex = addSortGetIndex(otherQuarter, quarterArray), newOtherItem = { shortType: shortType, fiscalYear: parseInt(itemYear), year: parseInt(itemYear), docs: [item] }; data.quartersWithItems.splice(otherIndex, 0, newOtherItem); } } function setTitleAndPlacement(quarter) { $.each(quarter.docs, function (i, doc) { if (DOCSETUP[doc.docCategory]) { doc.docTitle = DOCSETUP[doc.docCategory].title; doc.placement = DOCSETUP[doc.docCategory].placement; doc.format = DOCSETUP[doc.docCategory].format; } else { doc.docTitle = doc.docTitle || doc.title; doc.placement = 9; } }); quarter.docs.sort(function (a, b) { return a.placement - b.placement; }); } function createDocumentsList(qrtr){ var titleArr = []; $.each(qrtr.docs, function(i, doc){ if (titleArr.indexOf(doc.docTitle) < 0){ titleArr.push( doc.docTitle ); } }); var titleObjs = titleArr.map(function(element, index, array){ var newObj = {docTitle: element, docs: []}; return newObj; }); $.each(qrtr.docs, function(i, doc){ $.each(titleObjs, function(ix, titleObj){ if (doc.docTitle === titleObj.docTitle){ titleObj.docs.push(doc); } }); }); return titleObjs; } for (var i = 0; i < data.sourcesWithItems.length; i++) { $.each(data.sourcesWithItems[i].items, function (i, item) { setupItems(item); }); } data.quartersWithItems.length = WIDGETSETUP.totalQuarters; $.each(data.quartersWithItems, function (i, quarter) { if (quarter){ setTitleAndPlacement(quarter); $.each(quarter.docs, function (i, doc) { makeTargetBlank(doc); }); quarter.docsTemplate = createDocumentsList(quarter); } }); data.quartersWithItems[0].docs.forEach(function(element){ // if (element.docCategory === "webcast-video" && element.docThumb || // element.docCategory === "webcast" && element.docThumb) { if (element.docCategory === "webcast" && element.docThumb) { data.quartersWithItems[0].featured = []; data.quartersWithItems[0].featured['docThumb'] = element.docThumb; data.quartersWithItems[0].featured['docUrl'] = element.docUrl; console.log("T", element) } }); }, complete: function (e) { } });})();

A Historic Year: 2023 at a Glance

T-Mobile - Investor Relations (2) T-Mobile - Investor Relations (3) Learn More

FY 2023 - Core Adjusted EBITDA and Adjusted Free Cash Flow are non-GAAP financial measures. Definitions, explanations, and reconciliations to the most directly comparable GAAP measures are provided in our annual report on Form 10-K for the year ended December 31, 2023, which can be found here. here.

Featured Blog

Community

A Message from Our Chief Communications and Corporate Responsibility Officer

June 3, 2024

View All Blogs

T-Mobile - Investor Relations (2024)
Top Articles
Latest Posts
Article information

Author: Duncan Muller

Last Updated:

Views: 5583

Rating: 4.9 / 5 (59 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Duncan Muller

Birthday: 1997-01-13

Address: Apt. 505 914 Phillip Crossroad, O'Konborough, NV 62411

Phone: +8555305800947

Job: Construction Agent

Hobby: Shopping, Table tennis, Snowboarding, Rafting, Motor sports, Homebrewing, Taxidermy

Introduction: My name is Duncan Muller, I am a enchanting, good, gentle, modern, tasty, nice, elegant person who loves writing and wants to share my knowledge and understanding with you.