'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Eli Lilly

Eli Lilly (July 8, 1838 – June 6, 1898) was an American soldier, pharmacist, chemist, and businessman. He was the founder of the Eli Lilly and Company pharmaceutical corporation. Lilly enlisted in the Union Army during the American Civil War; he recruited a company of men to serve with him in an artillery battery, was later promoted to colonel, and was given command of a cavalry unit. He was captured near the end of the war and held as a prisoner of war until its conclusion. After the war, he attempted to run a plantation in Mississippi, but failed and returned to his pharmacy profession after the death of his wife. Lilly remarried and worked in several pharmacies with partners before opening his own business in 1876 with plans to manufacture drugs and market them wholesale to pharmacies.

His company was successful and he soon became wealthy after making numerous advances in medicinal drug manufacturing. Two of the early advances he pioneered were creating gelatin capsules to hold medicine and fruit flavoring for liquid medicines. Eli Lilly and Company was one of the first pharmaceutical firms of its kind; it staffed a dedicated research department and put in place numerous quality-assurance measures.

Eli Lilly (disambiguation)

Eli Lilly (1839-1898) was the founder of Eli Lilly and Company.

Eli Lilly may also refer to:

  • Eli Lilly and Company, a global pharmaceutical company
  • Eli Lilly (industrialist) (1885-1977), former president of Eli Lilly and Company, grandson of founder Eli Lilly
  • Eli Lilly (industrialist)

    Eli Lilly (April 1, 1885 – January 24, 1977) was a pharmaceutical industrialist and philanthropist from Indianapolis, Indiana, United States. Under his vision and leadership, Eli Lilly and Company, founded by his grandfather, grew from a successful, family-owned business into a modern corporation and industry leader. Lilly served as the company president (193248), chairman of the board of directors (194861 and 196669), and honorary chairman of the board (196166 and 196977).

    Throughout his long life, Lilly took a personal interest in the history of Indiana and his hometown of Indianapolis. A man of significant personal wealth, whose philanthropic contributions were often given anonymously, Lilly was also modest, quiet, and unassuming. He made substantial gifts and actively supported the work of individuals and groups who shared his passions for archaeology, state and local history, art, religion, education, and civic improvement. In addition to his personal philanthropy, Lilly, with his father, Josiah K. Lilly Sr., and brother, Josiah K. Lilly Jr., established the Lilly Endowment, a philanthropic foundation that continues to support their family's generosity into the twenty-first century. Lilly also wrote, edited, or contributed to published works related to the prehistory of Indiana; Christ Church Cathedral, Indianapolis; the Delaware tribe's chronicle, Walum Olum; Indiana's Lake Wawasee; and archaeologist Heinrich Schliemann. A politically conservative Republican and a lifelong member of the Episcopal church, Lilly's traditional values concerning family, home, and community service guided his work in the pharmaceutical industry and in civic life.

    Podcasts:

    • Eli Lilly to sell Zepbound directly to consumers without insurance coverage

      Eli Lilly is announcing a new way to get its popular Zepbound drug.

      published: 27 Aug 2024
    • Eli Lilly: Becoming the world's biggest pharmaceutical company 1876-2024

      With a rich history dating back to the 19th century, Eli Lilly (LLY) has faced struggles and successes. But a booming market cap has quickly turned it into the biggest pharmaceutical brand in the world. Let's dive into Lilly’s biggest moments with Beyond the Ticker. 1876 The company was founded by Colonel Eli Lilly, a pharmaceutical chemist and Union Army veteran. Lilly served as the company president until he died in 1898. 1914-1918 Lilly experienced huge growth before and after World War I, including the expansion of its Indianapolis, Indiana, facility. 1923 The company began selling Iletin to treat diabetes, the world's first commercially available insulin product. 1952 Lilly became a publicly traded company on the New York Stock Exchange. 1971 Lilly acquired cosmetic manufac...

      published: 04 Aug 2024
    • Eli Lilly Now Selling Zepbound Vials at 50% Discount

      Eli Lilly & Co. is now selling vials of its blockbuster weight-loss drug Zepbound to patients for as little as $399 a month as it works to overcome supply shortages of wildly popular shots. #zepbound #ozempic #weightloss #elililly Patients with a prescription for Zepbound can purchase a month’s supply of single-use vials through Lilly’s direct-to-consumer site starting Tuesday, the company said in a statement. The vials are priced at about half of what shots cost, with a higher dose going for $549 a month. Zepbound is typically sold in an auto-injector pen. With vials, patients need to fill syringes on their own but it saves Lilly production time, allowing more people to get the drug. Read more: https://www.bloomberg.com/news/articles/2024-08-27/eli-lilly-is-now-selling-zepbound-weight...

      published: 27 Aug 2024
    • Eil Lilly announces Zepbound to be sold directly to consumers

      David Ricks, the CEO of Eli Lilly, announced the weight-loss drug can be purchased directly without insurance coverage. READ MORE: https://tinyurl.com/3scet5ne SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Threads: https://www.threads.net/@goodmorningamerica X: https://twitter.com/gma

      published: 27 Aug 2024
    • Eli Lilly CEO: We have 11 pipeline projects in obesity

      CNBC's Angelica Peebles joins 'Squawk on the Street' to report on Eli Lilly's new investment in a new $4.5 billion research and development center.

      published: 02 Oct 2024
    • FDA approves Eli Lilly's Zepbound drug for weight loss

      The FDA has approved Eli Lilly's Zepbound drug for weight loss. It's set to hit the market by the end of the year. Nancy Chen has more. #news #fda #elililly Each weekday morning, "CBS Mornings” co-hosts Gayle King, Tony Dokoupil and Nate Burleson bring you the latest breaking news, smart conversation and in-depth feature reporting. "CBS Mornings" airs weekdays at 7 a.m. on CBS and stream it at 8 a.m. ET on the CBS News app. Subscribe to “CBS Mornings” on YouTube: https://www.youtube.com/CBSMornings Watch CBS News: http://cbsn.ws/1PlLpZ7c Download the CBS News app: http://cbsn.ws/1Xb1WC8 Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https://bit.ly/3tpOx00 Follow "CBS Mornings" on Twitter: https://bit.ly/38QQp8B Subscribe to our newsletter: ...

      published: 09 Nov 2023
    • Eli Lilly Chief Scientific Officer explains Zepbound's weight loss advantage

      Dan Skovronsky, Eli Lilly Chief Scientific Officer, joins 'Fast Money' to talk Zepbound's recent trial results and what it means for Eli Lilly's future growth.

      published: 05 Dec 2024
    • Eli Lilly’s new Ozempic alternative

      Eli Lilly's new weight loss drug is making waves. #Ozempic #EliLilly #MorningBrew

      published: 29 Apr 2023
    • National Juneteenth Museum receives $2.5 million endowment

      The museum is hoping to break ground in 2025 and open in 2026.

      published: 17 Dec 2024
    • Eli Lilly CEO David Ricks on Q3 results: The underlying growth story is fantastic

      Eli Lilly CEO David Ricks joins 'Squawk Box' to discuss the company's quarterly earnings results, which reported third-quarter adjusted profit and revenue that missed expectations, weighed down by disappointing sales of its blockbuster weight loss drug Zepbound and diabetes treatment Mounjaro, why the company is slashing its full-year adjusted profit guidance, and more.

      published: 30 Oct 2024
    Eli Lilly to sell Zepbound directly to consumers without insurance coverage
    3:14

    Eli Lilly to sell Zepbound directly to consumers without insurance coverage

    • Order:
    • Duration: 3:14
    • Uploaded Date: 27 Aug 2024
    • views: 6643
    Eli Lilly is announcing a new way to get its popular Zepbound drug.
    https://wn.com/Eli_Lilly_To_Sell_Zepbound_Directly_To_Consumers_Without_Insurance_Coverage
    Eli Lilly: Becoming the world's biggest pharmaceutical company 1876-2024
    2:01

    Eli Lilly: Becoming the world's biggest pharmaceutical company 1876-2024

    • Order:
    • Duration: 2:01
    • Uploaded Date: 04 Aug 2024
    • views: 12833
    With a rich history dating back to the 19th century, Eli Lilly (LLY) has faced struggles and successes. But a booming market cap has quickly turned it into the biggest pharmaceutical brand in the world. Let's dive into Lilly’s biggest moments with Beyond the Ticker. 1876 The company was founded by Colonel Eli Lilly, a pharmaceutical chemist and Union Army veteran. Lilly served as the company president until he died in 1898. 1914-1918 Lilly experienced huge growth before and after World War I, including the expansion of its Indianapolis, Indiana, facility. 1923 The company began selling Iletin to treat diabetes, the world's first commercially available insulin product. 1952 Lilly became a publicly traded company on the New York Stock Exchange. 1971 Lilly acquired cosmetic manufacturer Elizabeth Arden for $38 million, eventually turning it into a financial success. 1987 Lilly sold Arden to Fabergé for $657 million. 2009 A fine of over $1.4 billion, the largest in US history, was imposed on Lilly for illegally marketing its best-selling mood disorder product Zyprexa. Related Videos What earnings calls have been revealing about consumer weakness Lilly hit the jackpot with tirzepatide, a new type of GLP-1 product, sold as Mounjaro for type II diabetes. It began competing with Novo Nordisk’s (NVO) Ozempic, which had been on the market for a few years, but started struggling to meet demand as its popularity grew for off label weight loss use. 2023 Zepbound, the same formula as Mounjaro, was approved for obesity, and it began competing with Novo’s Wegovy. The two companies have a duopoly in this brand-new obesity market. The tirzepatide drugs have spiked Lilly’s stock by nearly 100% in the past year, and its annual revenue was over $34.1 billion in 2023 – a nearly 20% increase year-over-year. 2024 Lilly continues to reach all-time highs and is currently the biggest healthcare company in the world, with a market cap of well over $800 billion. Wall Street projects the GLP-1s alone will net Lilly $13 billion this year. And this is all before the FDA expands their use for other diseases. Its why Lilly is on track to make history and be the first trillion dollar healthcare company. From tech giants to retail titans, Beyond the Ticker is a historical series that takes a deep dive into some of Wall Street's trending companies and how they transformed into the financial icons they are today. About Yahoo Finance: Yahoo Finance provides free stock ticker data, up-to-date news, portfolio management resources, comprehensive market data, advanced tools, and more information to help you manage your financial life. - Get the latest news and data at finance.yahoo.com - Download the Yahoo Finance app on Apple (https://apple.co/3Rten0R) or Android (https://bit.ly/3t8UnXO) - Follow Yahoo Finance on social: X: http://twitter.com/YahooFinance Instagram: https://www.instagram.com/yahoofinance/?hl=en TikTok: https://www.tiktok.com/@yahoofinance?lang=en Facebook: https://www.facebook.com/yahoofinance/ LinkedIn: https://www.linkedin.com/company/yahoo-finance
    https://wn.com/Eli_Lilly_Becoming_The_World's_Biggest_Pharmaceutical_Company_1876_2024
    Eli Lilly Now Selling Zepbound Vials at 50% Discount
    0:27

    Eli Lilly Now Selling Zepbound Vials at 50% Discount

    • Order:
    • Duration: 0:27
    • Uploaded Date: 27 Aug 2024
    • views: 8349
    Eli Lilly & Co. is now selling vials of its blockbuster weight-loss drug Zepbound to patients for as little as $399 a month as it works to overcome supply shortages of wildly popular shots. #zepbound #ozempic #weightloss #elililly Patients with a prescription for Zepbound can purchase a month’s supply of single-use vials through Lilly’s direct-to-consumer site starting Tuesday, the company said in a statement. The vials are priced at about half of what shots cost, with a higher dose going for $549 a month. Zepbound is typically sold in an auto-injector pen. With vials, patients need to fill syringes on their own but it saves Lilly production time, allowing more people to get the drug. Read more: https://www.bloomberg.com/news/articles/2024-08-27/eli-lilly-is-now-selling-zepbound-weight-loss-drug-at-50-discount?sref=omvmmwIg -------- Subscribe to our YouTube channel: https://trib.al/KM4k5RA Subscribe to Bloomberg Originals: https://trib.al/dJv9Uw8 Bloomberg Quicktake brings you global social video spanning business, technology, politics and culture. Make sense of the stories changing your business and your world. Connect with us on… YouTube: https://www.youtube.com/user/Bloomberg Breaking News on YouTube: https://www.youtube.com/@BloombergQuicktakeNow
    https://wn.com/Eli_Lilly_Now_Selling_Zepbound_Vials_At_50_Discount
    Eil Lilly announces Zepbound to be sold directly to consumers
    4:04

    Eil Lilly announces Zepbound to be sold directly to consumers

    • Order:
    • Duration: 4:04
    • Uploaded Date: 27 Aug 2024
    • views: 54344
    David Ricks, the CEO of Eli Lilly, announced the weight-loss drug can be purchased directly without insurance coverage. READ MORE: https://tinyurl.com/3scet5ne SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Threads: https://www.threads.net/@goodmorningamerica X: https://twitter.com/gma
    https://wn.com/Eil_Lilly_Announces_Zepbound_To_Be_Sold_Directly_To_Consumers
    Eli Lilly CEO: We have 11 pipeline projects in obesity
    2:22

    Eli Lilly CEO: We have 11 pipeline projects in obesity

    • Order:
    • Duration: 2:22
    • Uploaded Date: 02 Oct 2024
    • views: 2657
    CNBC's Angelica Peebles joins 'Squawk on the Street' to report on Eli Lilly's new investment in a new $4.5 billion research and development center.
    https://wn.com/Eli_Lilly_Ceo_We_Have_11_Pipeline_Projects_In_Obesity
    FDA approves Eli Lilly's Zepbound drug for weight loss
    2:00

    FDA approves Eli Lilly's Zepbound drug for weight loss

    • Order:
    • Duration: 2:00
    • Uploaded Date: 09 Nov 2023
    • views: 33371
    The FDA has approved Eli Lilly's Zepbound drug for weight loss. It's set to hit the market by the end of the year. Nancy Chen has more. #news #fda #elililly Each weekday morning, "CBS Mornings” co-hosts Gayle King, Tony Dokoupil and Nate Burleson bring you the latest breaking news, smart conversation and in-depth feature reporting. "CBS Mornings" airs weekdays at 7 a.m. on CBS and stream it at 8 a.m. ET on the CBS News app. Subscribe to “CBS Mornings” on YouTube: https://www.youtube.com/CBSMornings Watch CBS News: http://cbsn.ws/1PlLpZ7c Download the CBS News app: http://cbsn.ws/1Xb1WC8 Follow "CBS Mornings" on Instagram: https://bit.ly/3A13OqA Like "CBS Mornings" on Facebook: https://bit.ly/3tpOx00 Follow "CBS Mornings" on Twitter: https://bit.ly/38QQp8B Subscribe to our newsletter: http://cbsn.ws/1RqHw7T​ Try Paramount+ free: https://bit.ly/2OiW1kZ For video licensing inquiries, contact: licensing@veritone.com
    https://wn.com/Fda_Approves_Eli_Lilly's_Zepbound_Drug_For_Weight_Loss
    Eli Lilly Chief Scientific Officer explains Zepbound's weight loss advantage
    4:49

    Eli Lilly Chief Scientific Officer explains Zepbound's weight loss advantage

    • Order:
    • Duration: 4:49
    • Uploaded Date: 05 Dec 2024
    • views: 1431
    Dan Skovronsky, Eli Lilly Chief Scientific Officer, joins 'Fast Money' to talk Zepbound's recent trial results and what it means for Eli Lilly's future growth.
    https://wn.com/Eli_Lilly_Chief_Scientific_Officer_Explains_Zepbound's_Weight_Loss_Advantage
    Eli Lilly’s new Ozempic alternative
    0:44

    Eli Lilly’s new Ozempic alternative

    • Order:
    • Duration: 0:44
    • Uploaded Date: 29 Apr 2023
    • views: 1642
    Eli Lilly's new weight loss drug is making waves. #Ozempic #EliLilly #MorningBrew
    https://wn.com/Eli_Lilly’S_New_Ozempic_Alternative
    National Juneteenth Museum receives $2.5 million endowment
    0:24

    National Juneteenth Museum receives $2.5 million endowment

    • Order:
    • Duration: 0:24
    • Uploaded Date: 17 Dec 2024
    • views: 163
    The museum is hoping to break ground in 2025 and open in 2026.
    https://wn.com/National_Juneteenth_Museum_Receives_2.5_Million_Endowment
    Eli Lilly CEO David Ricks on Q3 results: The underlying growth story is fantastic
    7:14

    Eli Lilly CEO David Ricks on Q3 results: The underlying growth story is fantastic

    • Order:
    • Duration: 7:14
    • Uploaded Date: 30 Oct 2024
    • views: 10584
    Eli Lilly CEO David Ricks joins 'Squawk Box' to discuss the company's quarterly earnings results, which reported third-quarter adjusted profit and revenue that missed expectations, weighed down by disappointing sales of its blockbuster weight loss drug Zepbound and diabetes treatment Mounjaro, why the company is slashing its full-year adjusted profit guidance, and more.
    https://wn.com/Eli_Lilly_Ceo_David_Ricks_On_Q3_Results_The_Underlying_Growth_Story_Is_Fantastic
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 27:19

    Eli Lilly to sell Zepbound directly to consumers without insurance coverage

    Eli Lilly is announcing a new way to get its popular Zepbound drug.
    3:14
    Eli Lilly to sell Zepbound directly to consumers without insurance coverage
    Eli Lilly is announcing a new way to get its popular Zepbound drug.
    published: 27 Aug 2024
    Play in Full Screen
    2:01
    Eli Lilly: Becoming the world's biggest pharmaceutical company 1876-2024
    With a rich history dating back to the 19th century, Eli Lilly (LLY) has faced struggles a...
    published: 04 Aug 2024
    Play in Full Screen
    0:27
    Eli Lilly Now Selling Zepbound Vials at 50% Discount
    Eli Lilly & Co. is now selling vials of its blockbuster weight-loss drug Zepbound to patie...
    published: 27 Aug 2024
    Play in Full Screen
    4:04
    Eil Lilly announces Zepbound to be sold directly to consumers
    David Ricks, the CEO of Eli Lilly, announced the weight-loss drug can be purchased directl...
    published: 27 Aug 2024
    Play in Full Screen
    2:22
    Eli Lilly CEO: We have 11 pipeline projects in obesity
    CNBC's Angelica Peebles joins 'Squawk on the Street' to report on Eli Lilly's new investme...
    published: 02 Oct 2024
    Play in Full Screen
    2:00
    FDA approves Eli Lilly's Zepbound drug for weight loss
    The FDA has approved Eli Lilly's Zepbound drug for weight loss. It's set to hit the market...
    published: 09 Nov 2023
    Play in Full Screen
    4:49
    Eli Lilly Chief Scientific Officer explains Zepbound's weight loss advantage
    Dan Skovronsky, Eli Lilly Chief Scientific Officer, joins 'Fast Money' to talk Zepbound's ...
    published: 05 Dec 2024
    Play in Full Screen
    0:44
    Eli Lilly’s new Ozempic alternative
    Eli Lilly's new weight loss drug is making waves. #Ozempic #EliLilly #MorningBrew
    published: 29 Apr 2023
    Play in Full Screen
    0:24
    National Juneteenth Museum receives $2.5 million endowment
    The museum is hoping to break ground in 2025 and open in 2026.
    published: 17 Dec 2024
    Play in Full Screen
    7:14
    Eli Lilly CEO David Ricks on Q3 results: The underlying growth story is fantastic
    Eli Lilly CEO David Ricks joins 'Squawk Box' to discuss the company's quarterly earnings r...
    published: 30 Oct 2024
    Play in Full Screen

    Eli Lilly

    Eli Lilly (July 8, 1838 – June 6, 1898) was an American soldier, pharmacist, chemist, and businessman. He was the founder of the Eli Lilly and Company pharmaceutical corporation. Lilly enlisted in the Union Army during the American Civil War; he recruited a company of men to serve with him in an artillery battery, was later promoted to colonel, and was given command of a cavalry unit. He was captured near the end of the war and held as a prisoner of war until its conclusion. After the war, he attempted to run a plantation in Mississippi, but failed and returned to his pharmacy profession after the death of his wife. Lilly remarried and worked in several pharmacies with partners before opening his own business in 1876 with plans to manufacture drugs and market them wholesale to pharmacies.

    His company was successful and he soon became wealthy after making numerous advances in medicinal drug manufacturing. Two of the early advances he pioneered were creating gelatin capsules to hold medicine and fruit flavoring for liquid medicines. Eli Lilly and Company was one of the first pharmaceutical firms of its kind; it staffed a dedicated research department and put in place numerous quality-assurance measures.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: eli lilly

    Edit

    Eli Lilly and Creyon Bio Forge $1 Billion AI-Driven RNA Therapy Alliance (BIS Research)

    Public Technologies 05 May 2025
    ) In a landmark collaboration, pharmaceutical giant Eli Lilly has partnered with San Diego-based biotech firm Creyon Bio to develop next-generation RNA-targeted therapies ... [...] ... Disclaimer.
    Edit

    I broke my 2025 Stocks and Shares ISA plan by buying this stock while it ...

    The Motley Fool 05 May 2025
    The chief culprit is Eli Lilly, the company’s arch-rival in the lucrative GLP-1 weight-loss treatment space ... That looks very cheap to me, despite the rising competitive threat from Eli Lilly.
    Edit

    Lilly declares second-quarter 2025 dividend

    Victoria Advocate 05 May 2025
    INDIANAPOLIS, May 5, 2025 /PRNewswire/ -- The board of directors of Eli Lilly and Company (NYSE.LLY) has declared a dividend for the second quarter of 2025 of $1.50 per share on outstanding common stock ....
    Edit

    3 world-class dividend stocks to consider for passive income

    The Motley Fool 05 May 2025
    Dividend stocks offer a straightforward way to create passive income ... RKT) ... NVO) ... At present, the company is priced as if rival Eli Lilly is going to capture the entire GLP-1 market! ... That said, competition from Eli Lilly and other companies is a risk ... .
    Edit

    Micah Beckwith is lying about the Three-Fifths Compromise | Letters

    IndyStar 05 May 2025
    Diego Morales and Micah Beckwith's $90K SUVs controversy explained ... That’s what Indiana Lt. Gov ... That’s simply not true ... I graduated from DePauw University as an Eli Lilly Endowment Scholar with degrees in history and art history ... Hoosiers deserve better.
    Edit

    ER+/ HER2 -ve Breast Cancer Clinical Trials and Studies 2025: EMA, PDMA, FDA Approvals, Mechanism ...

    GetNews 05 May 2025
    AstraZeneca, Atossa Therapeutics, Inc., Accutar Biotechnology Inc, VelosBio Inc, Merus N.V., Pfizer, Olema Pharmaceuticals, Inc., Eli Lilly and Company, Novartis Pharmaceuticals, Hoffmann-La Roche, Ellipses Pharma, BeiGene and others.
    Edit

    Indianapolis airport gains nonstop service to Europe with new Aer Lingus flight to Dublin

    IndyStar 05 May 2025
    Aer Lingus senior vice president discusses airline's Indianapolis flight ... In the fall Indianapolis-based Eli Lilly announced a massive $1.8 billion investment in Ireland, signaling a growing demand for air service between the two pharmaceutical hubs.
    Edit

    Americans would suffer most if Trump imposes pharma tariffs, sector warns

    The Observer 05 May 2025
    The majority of prescription drugs sold around the world are generic ... He added ... The US firm Eli Lilly, the maker of diabetes and obesity drugs Mounjaro and Zepbound, is spending at least $27bn to build four new manufacturing sites in the US ... Share ... .
    Edit

    Ireland’s political and economic ties to America cannot be ignored

    The Hill 05 May 2025
    Ireland is a case in point ... exports. Pfizer, Boston Scientific, Abbott and Eli Lilly have their headquarters in Ireland, causing Trump to complain, “This beautiful island of 5 million people has got the entire U.S ... investments ... consumers, U.S ... economy ... .
    Edit

    Colorectal Cancer Pipeline 2025: Latest FDA Approvals, Clinical Trials, and Emerging Therapies Assessment by DelveInsight ...

    GetNews 05 May 2025
    The BREAKWATER trial (NCT05217446), an open-label, active-controlled study, evaluated a treatment regimen combining Pfizer’s Braftovi (encorafenib), Eli Lilly’s Erbitux (cetuximab), and ...
    Edit

    Metastatic HR+/HER2- Breast Cancer Market Projected to Expand Significantly by 2034, Driven by Recent FDA ...

    GetNews 04 May 2025
    Key breast cancer companies, such as Pfizer, Novartis, AstraZeneca, Roche, Arvinas, Olema Pharmaceuticals, Eli Lilly, and others, are shaping the treatment landscape for this most prevalent subtype of breast cancer.
    Edit

    Companies courting Trump tout old plans as America First investments

    Detroit news 04 May 2025
    Eli Lilly credited the first Trump administration’s 2017 tax cuts in announcing in February it would spend $27 billion on new domestic plants, saying “it is essential that these policies are extended ...
    Edit

    Word of the Week: Orforglipron. A promising new way to lose weight?

    The Berkshire Eagle 03 May 2025
    Obesity is in the news because of a new weight-loss drug in the form of a pill that can be taken any time of day, with or without food. Pharmaceutical company Ely Lilly dubbed it orforglipron. “Or-“ is for oral ....
    ×