Flex - Financials - Quarterly Results (2024)

Latest Quarters

', 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' }, 'Other: webcast': { type: 'events', tags: ['financials'], label: 'other' }, '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}}'+ // build tabs navigation for desktop '

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

'+ ''+ '

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

'+ // build select navigation for mobile '

'+ // tabpanel // news item '{{#quartersWithItems}}'+ '{{#.}}

'+ '

'+ '{{#news}}'+ '

{{shortType}} {{fiscalYear}} Report

'+ '

{{{title}}}

'+ '

{{{body}}}

'+ '

' + '' + 'View full release' + '' + '

' + '{{/news}}'+ '{{^news}}'+ '

There is no related quarterly press release. Continue for this quarter\'s downloads and related information.

'+ '{{/news}}'+ '

'+ '

'+ //'

Download for {{shortType}} {{fiscalYear}}

'+ '

Downloads

'+ '

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

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

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

' + '

Related Information

'+ '

'+ '

' + 'SEC Filings' + '' + '

' + '

'+ '

'+ '

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

No financial quarters found.

'+ '{{/quartersWithItems.length}}' /* beautify preserve:end */ ), beforeRender: function (e, data) { data.quartersWithItems = []; var quarterArray = [], quarterlyRange = { /*'Q1': [1, 2, 3], 'Q2': [4, 5, 6], 'Q3': [7, 8, 9], 'Q4': [10, 11, 12]*/ 'Q1': [4, 5, 6], 'Q2': [7, 8, 9], 'Q3': [10, 11, 12], 'Q4': [1, 2, 3] }; 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); } }); } else if (item.contentSourceID == 'News') { setupNews(item); } } 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 setupNews(item) { if (item.tags.indexOf('financials') > -1 && WIDGETSETUP.useFinNewsTags) { // New school "financials" formatted tag used setupNewsFinancialsTag(item); } else if (item.tags.indexOf('earnings') > -1) { // Old school "earnings" tag used setupNewsEarningsTag(item); } } function setupNewsEarningsTag(item){ item.month = new Date(item.dateObj).getMonth() + 1; // first month, january return 0, february returns 2 if (quarterlyRange['Q1'].indexOf(item.month) > -1) { item.shortType = 'Q1'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q2'].indexOf(item.month) > -1) { item.shortType = 'Q2'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q3'].indexOf(item.month) > -1) { item.shortType = 'Q3'; item.fiscalYear = item.year; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } else if (quarterlyRange['Q4'].indexOf(item.month) > -1) { item.shortType = 'Q4'; item.fiscalYear = item.year - 1; // item.year + 1 if news quarter is in next year or item.year - 1 if news quarter is in previous year } if ($.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray) > -1) { data.quartersWithItems[$.inArray((item.fiscalYear + ' ' + item.shortType), quarterArray)].news = item; } } function setupNewsFinancialsTag(item){ $.each(item.tags, function (i, tag) { if (tag.startsWith('fin-')) { var tagArr = tag.split('-'), itemYear = tagArr[1], shortType = tagArr[2].toUpperCase(); if ($.inArray((itemYear + ' ' + shortType), quarterArray) > -1) { data.quartersWithItems[$.inArray((itemYear + ' ' + shortType), quarterArray)].news = item; } } }); } 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; } else { doc.docTitle = doc.docTitle || doc.title; doc.placement = 9; } }); quarter.docs.sort(function (a, b) { return a.placement - b.placement; }); } 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); }); } }); //Hide tab with only SEC Filing /* var findSecIndex = data.quartersWithItems.findIndex( function (quarterItem) { return !quarterItem.shortType; }) ; if(findSecIndex !== -1) data.quartersWithItems.splice(findSecIndex,1); console.log(data);*/ }, complete: function (e) { q4Defaults.tabs($(e.target), '.tabs_nav', '.tabs_link', '.module-financial-mashup_item', '.module-financial-mashup_select', false); } });})();

Latest Financial Results

' + '

{{year}}

' + '

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

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

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

' + '{{/items}}' /* beautify preserve:end */ ), beforeRender: function(e, data) { $.each(data.items, function(idx, item) { $.each(item.docs, function(idx, doc) { // Make sure any local links open in the same window var url = doc.docUrl.toLowerCase().split('.'); if ( url[url.length-1] != 'aspx' ) { doc.blank = true; } }); }); } });

Flex - Financials - Quarterly Results (2024)

FAQs

What is Flex Ltd Q4 earnings? ›

Flex Ltd FLEX reported fourth-quarter fiscal 2024 adjusted earnings of 57 cents per share, beating the Zacks Consensus Estimate by 3.6%. The bottom line grew 29.5% year over year. Revenues (excluding Nextracker) decreased 11.7% year over year to $6.2 billion.

What is the earnings release of Flex? ›

FLEX Earnings History
Report DateFiscal QuarterEPS YoY Change
Jan 25, 20232023 (Q3)23.90% (+0.09)
Oct 26, 20222023 (Q2)31.23% (+0.11)
Jul 27, 20222023 (Q1)17.31% (+0.06)
May 04, 20222022 (Q4)6.18% (+0.02)
6 more rows

What is Flex revenue in 2024? ›

Revenue. In the fiscal year ending March 31, 2024, Flex Ltd. had annual revenue of $26.42B, a decrease of -7.32%. Revenue in the quarter ending March 31, 2024 was $4.51B, a -20.02% decrease year-over-year.

What is the annual turnover of Flex? ›

Flex revenue for the twelve months ending December 31, 2023 was $29.387B, a 1.12% decline year-over-year. Flex annual revenue for 2023 was $30.346B, a 16.53% increase from 2022. Flex annual revenue for 2022 was $26.041B, a 7.95% increase from 2021. Flex annual revenue for 2021 was $24.124B, a 0.36% decline from 2020.

Should I invest in Flex? ›

The highest analyst price target is $40.00 ,the lowest forecast is $27.00. The average price target represents 5.77% Increase from the current price of $31.87. Flex Ltd's analyst rating consensus is a Strong Buy.

Does Flex Ltd pay dividends? ›

Flex Ltd (FLEX) does not pay a dividend.

What is Flextronics net worth? ›

Flex Ltd. has a market cap or net worth of $13.49 billion as of June 5, 2024. Its market cap has increased by 17.14% in one year.

What does earnings release? ›

Meaning of earnings release in English

an official statement that gives details of a company's profit or loss for a particular period: Companies expecting disappointing earnings have told investors prior to the actual earnings release.

What is the earnings release event? ›

An earnings announcement occurs on a specific date during earnings season and is preceded by earnings estimates issued by equity analysts. If a company has been profitable leading up to the announcement, its share price will usually increase up to and slightly after the information is released.

What is Flex forecast? ›

Flex forecast is an engagement budgeting model. It includes staffing and shows revenue and profitability. It feeds the staffing info to TalentLink which is our scheduling system.

What is Flex earnings? ›

Flex pay is a type of fixed weekly compensation (with a variable overtime premium) that is sometimes available to employees who work a varying number of hours each week. Typically, some weeks will require more than 40 hours, and other weeks will require less than 40.

What is flex money in a budget? ›

At the end of the month, save any and all money that's left in the “flex” portion of your budget. Use it for emergency fund building (speaking of e-funds, I like to think of “flex” money as a “soft” emergency fund) or for actual saving for a goal. Just put it to positive financial use. with Monitor Highlights.

Who is the CEO of Flex? ›

Flex CEO Revathi Advaithi was listed on the inaugural CNBC Changemakers: Women Transforming Business list, which honors women in leadership who left an indelible mark on the world in 2023.

Who is the CEO of Flex Finance? ›

Yemi Olulana is the CEO & Founder at Flex Finance .

Who owns the Flex company? ›

Led by founder & CEO Lauren Schulte Wang, our team is working to create life-changing experiences through the products we make and conversations we spark. Learn more at flexfits.com.

What are flex earnings? ›

Flex pay is a type of fixed weekly compensation (with a variable overtime premium) that is sometimes available to employees who work a varying number of hours each week. Typically, some weeks will require more than 40 hours, and other weeks will require less than 40.

What is Tbla Q4 earnings? ›

TBLA Earnings History
Report DateFiscal QuarterForecast / EPS
Feb 24, 20232022 (Q4)0.05 / 0.06
Nov 09, 20222022 (Q3)-0.12 / -0.10
Aug 09, 20222022 (Q2)-0.08 / -0.02
May 12, 20222022 (Q1)-0.05 / 0.01
6 more rows

What was synchrony Q4 earnings? ›

Synchrony Reports Fourth Quarter Net Earnings of $783 Million or $1.09 Per Diluted Share.

What was Primerica Q4 earnings? ›

Fourth quarter revenues of $431.3 million increased 4% compared to the prior year period, while pre-tax operating income of $140.3 million increased 6%, in line with the growth in adjusted direct premiums.

Top Articles
Latest Posts
Article information

Author: Errol Quitzon

Last Updated:

Views: 6325

Rating: 4.9 / 5 (59 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.