'+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; })); }); -->

United States Secretary of Commerce

The United States Secretary of Commerce is the head of the United States Department of Commerce. The Secretary is appointed by the President of the United States with the advice and consent of the United States Senate and serves at the President's pleasure. A member of the President's Cabinet, the Secretary is concerned with promoting American businesses and industries; the Department states its mission to be "to foster, promote, and develop the foreign and domestic commerce".

Until 1913 there was one Secretary of Commerce and Labor, uniting this department with the Department of Labor, which is now headed by a separate Secretary of Labor.

The 38th Secretary of Commerce is Penny Pritzker, who was appointed by President Barack Obama on June 26, 2013.

List of Secretaries of Commerce

      No party       Democratic       Republican

Source: Department of Commerce: Secretaries

Living former Secretaries of Commerce

As of January 2016, there are ten living former Secretaries of Commerce, the oldest being Frederick B. Dent (1973-1975, born 1922). The most recent Secretary of Commerce to die was Juanita M. Kreps (1977-1979), on July 5, 2010.

Podcasts:

  • Commerce Secretary Gina Raimondo: The 60 Minutes Interview

    Secretary of Commerce Gina Raimondo is focused on U.S. advanced microchip production — and keeping the chips out of China and Russia. "60 Minutes" is the most successful television broadcast in history. Offering hard-hitting investigative reports, interviews, feature segments and profiles of people in the news, the broadcast began in 1968 and is still a hit, over 50 seasons later, regularly making Nielsen's Top 10. Subscribe to the “60 Minutes” YouTube channel: http://bit.ly/1S7CLRu Watch full episodes: http://cbsn.ws/1Qkjo1F Get more “60 Minutes” from “60 Minutes: Overtime”: http://cbsn.ws/1KG3sdr Follow “60 Minutes” on Instagram: http://bit.ly/23Xv8Ry Like “60 Minutes” on Facebook: http://on.fb.me/1Xb1Dao Follow “60 Minutes” on Twitter: http://bit.ly/1KxUsqX Subscribe to our newsletter...

    published: 23 Apr 2024
  • Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOX

    According to Punchbowl reports, Donald Trump is set to pick Wall Street firm Cantor Fitzgerald CEO Howard Lutnick to serve as the next Commerce Secretary. Trump would be tapping a long-time friend who backs the Republican's vision to bring manufacturing jobs back to the U.S., according to Reuters. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.

    published: 19 Nov 2024
  • Trump expected to pick Howard Lutnick for Commerce Secretary

    President-elect Trump is expected to pick Cantor Fitzgerald CEO Howard Lutnick, who is serving as his transition co-chair, to serve as his secretary of commerce. » Subscribe to MSNBC: https://www.youtube.com/msnbc » Subscribe to MSNBC on TikTok https://www.tiktok.com/@msnbc » Subscribe to MSNBC on Instagram https://www.instagram.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as well as commentary and informed perspectives. Find video clips and segments from The Rachel Maddow Show, Mornin...

    published: 19 Nov 2024
  • Trump's commerce secretary nominee on tariffs

    Donald Trump’s pick to lead the Commerce Department, Howard Lutnick, says Canada could avoid tariffs in the short term if the government addresses border concerns. Subscribe to CTV News to watch more videos: https://www.youtube.com/ctvnews Connect with CTV News: For live updates and latest headlines visit: http://www.ctvnews.ca/ For breaking news, fast, download the CTV News App: https://www.ctvnews.ca/app Must-watch stories and full programs at http://www.ctvnews.ca/video CTV News on TikTok: https://www.tiktok.com/discover/CTV-News CTV News on X (formerly Twitter): https://twitter.com/CTVNews CTV News on Reddit: https://www.reddit.com/user/CTVNEWS CTV News on LinkedIn: https://ca.linkedin.com/company/ctv-news --- CTV News is Canada's most-watched news organization both locally and ...

    published: 29 Jan 2025
  • U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investment

    CNBC's Eunice Yoon joins 'The Exchange' to discuss the highlights from her exclusive interview with U.S. Commerce Secretary Raimondo, signs of improved U.S. China cooperation, and concerns about Chinese retaliation against the U.S. export controls. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow C...

    published: 30 Aug 2023
  • Commerce Secretary Nominee Lutnick on reciprocal tariffs: Going to address each country one by one

    CNBC's Eamon Javers joins 'Fast Money' to talk the latest on the White House's tariff plans.

    published: 13 Feb 2025
  • Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate members

    The Senate Commerce Committee holds a hearing to consider Howard Lutnick's nomination as U.S. Secretary of Commerce. #foxnews Subscribe to Fox News! https://bit.ly/2vBUvAS Watch more Fox News Video: http://video.foxnews.com Watch Fox News Channel Live: http://www.foxnewsgo.com/ FOX News Channel (FNC) is a 24-hour all-encompassing news service delivering breaking news as well as political and business news. The number one network in cable, FNC has been the most-watched television news channel for 18 consecutive years. According to a 2020 Brand Keys Consumer Loyalty Engagement Index report, FOX News is the top brand in the country for morning and evening news coverage. A 2019 Suffolk University poll named FOX News as the most trusted source for television news or commentary, while a 2019 ...

    published: 29 Jan 2025
  • Trump taps Howard Lutnick for Commerce secretary role

    Fox News senior White House correspondent Peter Doocy has the latest on the president-elect's administration picks on 'The Story.' Subscribe to Fox News! https://bit.ly/2vBUvAS Watch more Fox News Video: http://video.foxnews.com Watch Fox News Channel Live: http://www.foxnewsgo.com/ FOX News Channel (FNC) is a 24-hour all-encompassing news service delivering breaking news as well as political and business news. The number one network in cable, FNC has been the most-watched television news channel for 18 consecutive years. According to a 2020 Brand Keys Consumer Loyalty Engagement Index report, FOX News is the top brand in the country for morning and evening news coverage. A 2019 Suffolk University poll named FOX News as the most trusted source for television news or commentary, while a 2...

    published: 19 Nov 2024
  • FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretary

    Howard Lutnick, a billionaire businessman and co-chair of President Donald Trump’s transition team, testifies Wednesday in his confirmation hearing to become commerce secretary. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.

    published: 29 Jan 2025
  • Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchange

    Commerce secretary nominee Howard Lutnick was asked about the potential impacts of tariffs at a hearing on Wednesday. Lutnick, who appeared to suggest tariffs could come in phases, pointed to border issues with Canada and Mexico as a ‘short term’ issue. Lutnick cited both fentanyl and undocumented migrants as areas of concern for the Trump administration but did not provide details about his assertions beyond calling for an end of movement of fentanyl into the U.S. »»» Subscribe to CBC News to watch more videos: http://bit.ly/1RreYWS Connect with CBC News Online: For breaking news, video, audio and in-depth coverage: http://bit.ly/1Z0m6iX Follow CBC News on TikTok: https://bit.ly/3TnHioe Follow CBC News on Twitter: http://bit.ly/1sA5P9H Find CBC News on Facebook: http://bit.ly/1WjG36m...

    published: 29 Jan 2025
Commerce Secretary Gina Raimondo: The 60 Minutes Interview
13:20

Commerce Secretary Gina Raimondo: The 60 Minutes Interview

  • Order:
  • Duration: 13:20
  • Uploaded Date: 23 Apr 2024
  • views: 110677
Secretary of Commerce Gina Raimondo is focused on U.S. advanced microchip production — and keeping the chips out of China and Russia. "60 Minutes" is the most successful television broadcast in history. Offering hard-hitting investigative reports, interviews, feature segments and profiles of people in the news, the broadcast began in 1968 and is still a hit, over 50 seasons later, regularly making Nielsen's Top 10. Subscribe to the “60 Minutes” YouTube channel: http://bit.ly/1S7CLRu Watch full episodes: http://cbsn.ws/1Qkjo1F Get more “60 Minutes” from “60 Minutes: Overtime”: http://cbsn.ws/1KG3sdr Follow “60 Minutes” on Instagram: http://bit.ly/23Xv8Ry Like “60 Minutes” on Facebook: http://on.fb.me/1Xb1Dao Follow “60 Minutes” on Twitter: http://bit.ly/1KxUsqX Subscribe to our newsletter: http://cbsn.ws/1RqHw7T Download the CBS News app: http://cbsn.ws/1Xb1WC8 Try Paramount+ free: https://bit.ly/2OiW1kZ For video licensing inquiries, contact: licensing@veritone.com
https://wn.com/Commerce_Secretary_Gina_Raimondo_The_60_Minutes_Interview
Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOX
2:16

Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOX

  • Order:
  • Duration: 2:16
  • Uploaded Date: 19 Nov 2024
  • views: 17872
According to Punchbowl reports, Donald Trump is set to pick Wall Street firm Cantor Fitzgerald CEO Howard Lutnick to serve as the next Commerce Secretary. Trump would be tapping a long-time friend who backs the Republican's vision to bring manufacturing jobs back to the U.S., according to Reuters. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.
https://wn.com/Trump_Selects_Billionaire_Howard_Lutnick_For_Commerce_Secretary_|_Livenow_From_Fox
Trump expected to pick Howard Lutnick for Commerce Secretary
2:06

Trump expected to pick Howard Lutnick for Commerce Secretary

  • Order:
  • Duration: 2:06
  • Uploaded Date: 19 Nov 2024
  • views: 74047
President-elect Trump is expected to pick Cantor Fitzgerald CEO Howard Lutnick, who is serving as his transition co-chair, to serve as his secretary of commerce. » Subscribe to MSNBC: https://www.youtube.com/msnbc » Subscribe to MSNBC on TikTok https://www.tiktok.com/@msnbc » Subscribe to MSNBC on Instagram https://www.instagram.com/msnbc Download our new MSNBC app for the latest breaking news and daily headlines at a glance: https://www.msnbc.com/information/download-msnbc-app-n1241692 Follow MSNBC Show Blogs MaddowBlog: https://www.msnbc.com/maddowblog ReidOut Blog: https://www.msnbc.com/reidoutblog MSNBC delivers breaking news, in-depth analysis of politics headlines, as well as commentary and informed perspectives. Find video clips and segments from The Rachel Maddow Show, Morning Joe, The Beat with Ari Melber, Deadline: White House, The ReidOut, All In, Last Word, 11th Hour, and Alex Wagner who brings her breadth of reporting experience to MSNBC primetime. Watch “Alex Wagner Tonight” Tuesday through Friday at 9pm Eastern. Connect with MSNBC Online Visit msnbc.com: https://www.msnbc.com/ Subscribe to the MSNBC Daily Newsletter: https://link.msnbc.com/join/5ck/msnbc-daily-signup #Trump #HowardLutnick #Politics
https://wn.com/Trump_Expected_To_Pick_Howard_Lutnick_For_Commerce_Secretary
Trump's commerce secretary nominee on tariffs
0:45

Trump's commerce secretary nominee on tariffs

  • Order:
  • Duration: 0:45
  • Uploaded Date: 29 Jan 2025
  • views: 9397
Donald Trump’s pick to lead the Commerce Department, Howard Lutnick, says Canada could avoid tariffs in the short term if the government addresses border concerns. Subscribe to CTV News to watch more videos: https://www.youtube.com/ctvnews Connect with CTV News: For live updates and latest headlines visit: http://www.ctvnews.ca/ For breaking news, fast, download the CTV News App: https://www.ctvnews.ca/app Must-watch stories and full programs at http://www.ctvnews.ca/video CTV News on TikTok: https://www.tiktok.com/discover/CTV-News CTV News on X (formerly Twitter): https://twitter.com/CTVNews CTV News on Reddit: https://www.reddit.com/user/CTVNEWS CTV News on LinkedIn: https://ca.linkedin.com/company/ctv-news --- CTV News is Canada's most-watched news organization both locally and nationally, and has a network of national, international, and local news operations.
https://wn.com/Trump's_Commerce_Secretary_Nominee_On_Tariffs
U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investment
2:06

U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investment

  • Order:
  • Duration: 2:06
  • Uploaded Date: 30 Aug 2023
  • views: 2022
CNBC's Eunice Yoon joins 'The Exchange' to discuss the highlights from her exclusive interview with U.S. Commerce Secretary Raimondo, signs of improved U.S. China cooperation, and concerns about Chinese retaliation against the U.S. export controls. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC https://www.cnbc.com/select/best-credit-cards/  #CNBC #CNBCTV 
https://wn.com/U.S._Commerce_Secretary_Raimondo_Retaliation_Is_Not_The_Way_To_Attract_U.S._Investment
Commerce Secretary Nominee Lutnick on reciprocal tariffs: Going to address each country one by one
2:14

Commerce Secretary Nominee Lutnick on reciprocal tariffs: Going to address each country one by one

  • Order:
  • Duration: 2:14
  • Uploaded Date: 13 Feb 2025
  • views: 3017
CNBC's Eamon Javers joins 'Fast Money' to talk the latest on the White House's tariff plans.
https://wn.com/Commerce_Secretary_Nominee_Lutnick_On_Reciprocal_Tariffs_Going_To_Address_Each_Country_One_By_One
Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate members
3:24:01

Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate members

  • Order:
  • Duration: 3:24:01
  • Uploaded Date: 29 Jan 2025
  • views: 150682
The Senate Commerce Committee holds a hearing to consider Howard Lutnick's nomination as U.S. Secretary of Commerce. #foxnews Subscribe to Fox News! https://bit.ly/2vBUvAS Watch more Fox News Video: http://video.foxnews.com Watch Fox News Channel Live: http://www.foxnewsgo.com/ FOX News Channel (FNC) is a 24-hour all-encompassing news service delivering breaking news as well as political and business news. The number one network in cable, FNC has been the most-watched television news channel for 18 consecutive years. According to a 2020 Brand Keys Consumer Loyalty Engagement Index report, FOX News is the top brand in the country for morning and evening news coverage. A 2019 Suffolk University poll named FOX News as the most trusted source for television news or commentary, while a 2019 Brand Keys Emotion Engagement Analysis survey found that FOX News was the most trusted cable news brand. A 2017 Gallup/Knight Foundation survey also found that among Americans who could name an objective news source, FOX News was the top-cited outlet. Owned by FOX Corporation, FNC is available in nearly 90 million homes and dominates the cable news landscape, routinely notching the top ten programs in the genre. Watch full episodes of your favorite shows The Five: https://www.foxnews.com/video/shows/the-five Special Report with Bret Baier: https://www.foxnews.com/video/shows/special-report Jesse Watters Primetime: https://www.foxnews.com/video/shows/jesse-watters-primetime Hannity: https://www.foxnews.com/video/shows/hannity The Ingraham Angle: https://www.foxnews.com/video/shows/ingraham-angle Gutfeld!: https://www.foxnews.com/video/shows/gutfeld Fox News @ Night: https://www.foxnews.com/video/shows/fox-news-night Follow Fox News on Facebook: https://www.facebook.com/FoxNews/ Follow Fox News on Twitter: https://twitter.com/FoxNews/ Follow Fox News on Instagram: https://www.instagram.com/foxnews/
https://wn.com/Trump_Commerce_Secretary_Nominee_Howard_Lutnick_Is_Grilled_By_Senate_Members
Trump taps Howard Lutnick for Commerce  secretary role
2:13

Trump taps Howard Lutnick for Commerce secretary role

  • Order:
  • Duration: 2:13
  • Uploaded Date: 19 Nov 2024
  • views: 24904
Fox News senior White House correspondent Peter Doocy has the latest on the president-elect's administration picks on 'The Story.' Subscribe to Fox News! https://bit.ly/2vBUvAS Watch more Fox News Video: http://video.foxnews.com Watch Fox News Channel Live: http://www.foxnewsgo.com/ FOX News Channel (FNC) is a 24-hour all-encompassing news service delivering breaking news as well as political and business news. The number one network in cable, FNC has been the most-watched television news channel for 18 consecutive years. According to a 2020 Brand Keys Consumer Loyalty Engagement Index report, FOX News is the top brand in the country for morning and evening news coverage. A 2019 Suffolk University poll named FOX News as the most trusted source for television news or commentary, while a 2019 Brand Keys Emotion Engagement Analysis survey found that FOX News was the most trusted cable news brand. A 2017 Gallup/Knight Foundation survey also found that among Americans who could name an objective news source, FOX News was the top-cited outlet. Owned by FOX Corporation, FNC is available in nearly 90 million homes and dominates the cable news landscape, routinely notching the top ten programs in the genre. Watch full episodes of your favorite shows The Five: https://www.foxnews.com/video/shows/the-five Special Report with Bret Baier: https://www.foxnews.com/video/shows/special-report Jesse Watters Primetime: https://www.foxnews.com/video/shows/jesse-watters-primetime Hannity: https://www.foxnews.com/video/shows/hannity The Ingraham Angle: https://www.foxnews.com/video/shows/ingraham-angle Gutfeld!: https://www.foxnews.com/video/shows/gutfeld Fox News @ Night: https://www.foxnews.com/video/shows/fox-news-night Follow Fox News on Facebook: https://www.facebook.com/FoxNews/ Follow Fox News on Twitter: https://twitter.com/FoxNews/ Follow Fox News on Instagram: https://www.instagram.com/foxnews/
https://wn.com/Trump_Taps_Howard_Lutnick_For_Commerce_Secretary_Role
FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretary
3:19:20

FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretary

  • Order:
  • Duration: 3:19:20
  • Uploaded Date: 29 Jan 2025
  • views: 64485
Howard Lutnick, a billionaire businessman and co-chair of President Donald Trump’s transition team, testifies Wednesday in his confirmation hearing to become commerce secretary. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.
https://wn.com/Full_Hearing_Howard_Lutnick_Confirmation_Hearing_For_Commerce_Secretary
Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchange
5:30

Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchange

  • Order:
  • Duration: 5:30
  • Uploaded Date: 29 Jan 2025
  • views: 144009
Commerce secretary nominee Howard Lutnick was asked about the potential impacts of tariffs at a hearing on Wednesday. Lutnick, who appeared to suggest tariffs could come in phases, pointed to border issues with Canada and Mexico as a ‘short term’ issue. Lutnick cited both fentanyl and undocumented migrants as areas of concern for the Trump administration but did not provide details about his assertions beyond calling for an end of movement of fentanyl into the U.S. »»» Subscribe to CBC News to watch more videos: http://bit.ly/1RreYWS Connect with CBC News Online: For breaking news, video, audio and in-depth coverage: http://bit.ly/1Z0m6iX Follow CBC News on TikTok: https://bit.ly/3TnHioe Follow CBC News on Twitter: http://bit.ly/1sA5P9H Find CBC News on Facebook: http://bit.ly/1WjG36m Follow CBC News on Instagram: http://bit.ly/1Z0iE7O Subscribe to CBC News on Snapchat: https://bit.ly/3leaWsr Download the CBC News app for iOS: http://apple.co/25mpsUz Download the CBC News app for Android: http://bit.ly/1XxuozZ »»»»»»»»»»»»»»»»»» For more than 80 years, CBC News has been the source Canadians turn to, to keep them informed about their communities, their country and their world. Through regional and national programming on multiple platforms, including CBC Television, CBC News Network, CBC Radio, CBCNews.ca, mobile and on-demand, CBC News and its internationally recognized team of award-winning journalists deliver the breaking stories, the issues, the analyses and the personalities that matter to Canadians.
https://wn.com/Trump's_Commerce_Nominee_Was_Asked_About_Tariffs_On_Canada_And_Mexico_Hear_The_Exchange
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Commerce Secretary Gina Raimondo: The 60 Minutes Interview
    13:20
    Commerce Secretary Gina Raimondo: The 60 Minutes Interviewremove from playlist
  • Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOX
    2:16
    Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOXremove from playlist
  • Trump expected to pick Howard Lutnick for Commerce Secretary
    2:06
    Trump expected to pick Howard Lutnick for Commerce Secretaryremove from playlist
  • Trump's commerce secretary nominee on tariffs
    0:45
    Trump's commerce secretary nominee on tariffsremove from playlist
  • U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investment
    2:06
    U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investmentremove from playlist
  • Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate members
    3:24:01
    Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate membersremove from playlist
  • Trump taps Howard Lutnick for Commerce  secretary role
    2:13
    Trump taps Howard Lutnick for Commerce secretary roleremove from playlist
  • FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretary
    3:19:20
    FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretaryremove from playlist
  • Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchange
    5:30
    Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchangeremove from playlist
PLAYLIST TIME: 0:00 / 7:13:51

Commerce Secretary Gina Raimondo: The 60 Minutes Interview

Secretary of Commerce Gina Raimondo is focused on U.S. advanced microchip production — and keeping the chips out of China and Russia. "60 Minutes" is the most successful television broadcast in history. Offering hard-hitting investigative reports, interviews, feature segments and profiles of people in the news, the broadcast began in 1968 and is still a hit, over 50 seasons later, regularly making Nielsen's Top 10. Subscribe to the “60 Minutes” YouTube channel: http://bit.ly/1S7CLRu Watch full episodes: http://cbsn.ws/1Qkjo1F Get more “60 Minutes” from “60 Minutes: Overtime”: http://cbsn.ws/1KG3sdr Follow “60 Minutes” on Instagram: http://bit.ly/23Xv8Ry Like “60 Minutes” on Facebook: http://on.fb.me/1Xb1Dao Follow “60 Minutes” on Twitter: http://bit.ly/1KxUsqX Subscribe to our newsletter: http://cbsn.ws/1RqHw7T Download the CBS News app: http://cbsn.ws/1Xb1WC8 Try Paramount+ free: https://bit.ly/2OiW1kZ For video licensing inquiries, contact: licensing@veritone.com
13:20
Commerce Secretary Gina Raimondo: The 60 Minutes Interview
Secretary of Commerce Gina Raimondo is focused on U.S. advanced microchip production — and...
published: 23 Apr 2024
Play in Full Screen
2:16
Trump selects billionaire Howard Lutnick for Commerce secretary | LiveNOW from FOX
According to Punchbowl reports, Donald Trump is set to pick Wall Street firm Cantor Fitzge...
published: 19 Nov 2024
Play in Full Screen
2:06
Trump expected to pick Howard Lutnick for Commerce Secretary
President-elect Trump is expected to pick Cantor Fitzgerald CEO Howard Lutnick, who is ser...
published: 19 Nov 2024
Play in Full Screen
0:45
Trump's commerce secretary nominee on tariffs
Donald Trump’s pick to lead the Commerce Department, Howard Lutnick, says Canada could avo...
published: 29 Jan 2025
Play in Full Screen
2:06
U.S. Commerce Secretary Raimondo: Retaliation is not the way to attract U.S. investment
CNBC's Eunice Yoon joins 'The Exchange' to discuss the highlights from her exclusive inter...
published: 30 Aug 2023
Play in Full Screen
2:14
Commerce Secretary Nominee Lutnick on reciprocal tariffs: Going to address each country one by one
CNBC's Eamon Javers joins 'Fast Money' to talk the latest on the White House's tariff plan...
published: 13 Feb 2025
Play in Full Screen
3:24:01
Trump Commerce Secretary nominee Howard Lutnick is grilled by Senate members
The Senate Commerce Committee holds a hearing to consider Howard Lutnick's nomination as U...
published: 29 Jan 2025
Play in Full Screen
2:13
Trump taps Howard Lutnick for Commerce secretary role
Fox News senior White House correspondent Peter Doocy has the latest on the president-elec...
published: 19 Nov 2024
Play in Full Screen
3:19:20
FULL HEARING: Howard Lutnick confirmation hearing for Commerce Secretary
Howard Lutnick, a billionaire businessman and co-chair of President Donald Trump’s transit...
published: 29 Jan 2025
Play in Full Screen
5:30
Trump's commerce nominee was asked about tariffs on Canada and Mexico: Hear the exchange
Commerce secretary nominee Howard Lutnick was asked about the potential impacts of tariffs...
published: 29 Jan 2025
Play in Full Screen

United States Secretary of Commerce

The United States Secretary of Commerce is the head of the United States Department of Commerce. The Secretary is appointed by the President of the United States with the advice and consent of the United States Senate and serves at the President's pleasure. A member of the President's Cabinet, the Secretary is concerned with promoting American businesses and industries; the Department states its mission to be "to foster, promote, and develop the foreign and domestic commerce".

Until 1913 there was one Secretary of Commerce and Labor, uniting this department with the Department of Labor, which is now headed by a separate Secretary of Labor.

The 38th Secretary of Commerce is Penny Pritzker, who was appointed by President Barack Obama on June 26, 2013.

List of Secretaries of Commerce

      No party       Democratic       Republican

Source: Department of Commerce: Secretaries

Living former Secretaries of Commerce

As of January 2016, there are ten living former Secretaries of Commerce, the oldest being Frederick B. Dent (1973-1975, born 1922). The most recent Secretary of Commerce to die was Juanita M. Kreps (1977-1979), on July 5, 2010.

'); } 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: commerce secretary

Edit

Beijing urges Washington to remove latest tariffs

China Daily 25 Apr 2025
China has urged the United States to fully remove all unilateral tariffs imposed on its exporters, emphasizing that a genuine resolution can only be achieved through equal and constructive dialogue, the Ministry of Commerce said on Thursday.
Edit

Trump trade deals appear distant as tariff tensions simmer

Raw Story 25 Apr 2025
Yet, hours earlier, Chinese Commerce Ministry spokesman He Yadong told reporters ... But he maintained that talks with the US side were warm, after engaging with officials including Bessent and Commerce Secretary Howard Lutnick.
Edit

US Has Spoken to 90 Countries on Trade, Tariffs: Commerce Secretary

The Epoch Times 24 Apr 2025
... trade deals after the president recently imposed sweeping baseline and reciprocal tariffs, Commerce Secretary Howard Lutnick said on April 23.
Edit

Former commerce secretary declares India may turn to new partners due to US tariffs

MENA FN 24 Apr 2025
(MENAFN) India is likely to explore new trade partnerships in response to the recent 26% US tariffs on Indian imports, according to Ajay Dua, a former Commerce and Industry Ministry secretary ... .
Edit

Son of top Trump official cashes in on president's pro-crypto policies with splashy multibillion-dollar deal ...

The Daily Mail 24 Apr 2025
Cantor Fitzgerald was formerly led by Commerce Secretary Howard Lutnick and is now led Lutnick’s sons, Brandon Lutnick who took over as chairman and Kyle Lutnick the executive vice chairman.
Edit

GOP Megadonor Ken Griffin Says Trump Is Bad for America’s Brand: ‘Can Be a Lifetime ...

The Wrap 24 Apr 2025
The president, Treasury secretary, and Commerce secretary "need to be very thoughtful … because when you tarnish that brand, it can be a lifetime… pic.twitter.com/GlxhN7r2R9— Semafor (@semafor) April 23, 2025.
Edit

MoCI Undersecretary takes part in preparatory meetings of Committees of GCC Undersecretaries of Commerce and Industry

The Peninsula 24 Apr 2025
The meetings convened Their Excellencies the Undersecretaries of the Ministries of Commerce and Industry of the GCC member states, ...
Edit

China says no ongoing trade talks with the US, calls for canceling ‘unilateral' tariffs

NBC Bay Area 24 Apr 2025
“At present there are absolutely no negotiations on the economy and trade between China and the U.S.,” said Ministry of Commerce Spokesperson He Yadong.U.S ... The commerce ministry’s comments echoed ...
Edit

Letter to the editor: Commerce department should stop micromanaging

Addison County Independent 24 Apr 2025
An open letter to Commerce Secretary Lutnick. ... Your control of all contracts over $100,000 is disabling Commerce agencies; perhaps that is your goal? Stop micromanaging. We, the people, value the work done at all Commerce Department agencies.
Edit

Why Trump is signing an executive action on mining the deep ocean

CNN 24 Apr 2025
Trump will sign an executive order Thursday directing the secretaries of Interior and Commerce to speed up the exploration and permitting for deep sea mining off the US Outer Continental Shelf.
Edit

Trump Administration Probing Truck Imports, Citing National Security

The Epoch Times 24 Apr 2025
Commerce Secretary Howard Lutnick has launched an investigation to determine the national security impact of commercial truck imports into the ...
Edit

‘Elon was shouting and rambling’: Musk-Bessent clash over IRS turns heated at White House

The Times of India 24 Apr 2025
break things in the process of reform.” Commerce Secretary Howard Lutnick was also present and, according to one source, sided with Musk during the exchange. White House Press Secretary Karoline ...
Edit

Trump Signs Spate of Orders Targeting Education

The Epoch Times 24 Apr 2025
During the signing ceremony and news conference in his office, he was flanked by Education Secretary Linda McMahon, Commerce Secretary Howard Lutnick, and several disabled military veterans ... ....
Edit

Trump signs order seeking to jump-start mining of the ocean floor

The Hill 24 Apr 2025
The president’s order was expected to direct the Commerce secretary to expedite permits for commercial undersea exploration and mining. It directs the Interior secretary to set a program to allow for mining off U.S. coasts ... ....
×