CINXE.COM
Newsroom
<!doctype html> <html lang="en-US"> <head> <!-- begin spin_special_output(head_start) --> <script type="text/javascript" src="js/jquery-webdriver.js" wd_script_id="jquery-webdriver.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <script type="text/javascript" src="js/webdriver.js" wd_script_id="webdriver.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <script type="text/javascript" src="js/wd_scriptloader.js" wd_script_id="wd_scriptloader.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <script type="text/javascript" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA==">webDriver.push_jQuery();</script> <script type="text/javascript" src="js/jquery-ui.js" wd_script_id="jquery-ui.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <script type="text/javascript" src="js/wd_resize.js" wd_script_id="wd_resize.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <link href="css/wd_modal.css" type="text/css" rel="stylesheet" wd_script_id="wd_modal.css"> <link href="css/wd_wcag.css" type="text/css" rel="stylesheet" wd_script_id="wd_wcag.css"> <script type="text/javascript" wd_script_id="wd_modal_script" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="> (function($) { webDriver.resizeModal = function() { $(this).find(".wd_modal").wd_modal("resize"); return false; } var modals = []; function _value(value, base) { if (typeof value == "string" && value.indexOf("%") > 0) { return base * parseInt(value, 10) / 100; } else { return parseInt(value, 10); } } var wd_modal = function(element, options) { this.init(element, options); }; wd_modal.prototype = { init: function(element, options) { var self = this; this.isOpen = false; this.opener = null; this.$element = $(element); this._options = { autoOpen: false, closeExisting: false, closeOnEscape: true, closeOnOverlayClick: true, fadeDuration: null, margin: "10%", padding: 10 }; this.options(options); this.$overlay = $("<div>").addClass("wd_modal-overlay").attr("wd_resize","resizeModal").appendTo($("body")).hide(); this.$outer = $("<div>").addClass("wd_modal-outer").appendTo(this.$overlay); this.$inner = $("<div>").addClass("wd_modal-inner").appendTo(this.$outer).append(this.$element); // Hack because I can't figure out where the extra few pixels at the bottom of the content are coming from this.$inner.css("overflow-y", "hidden"); this.$close = $("<a class=\"wd_modal-close fa fa-times\" href=\"#close\" title=\"Close\"><span class=\"wd_sr-only\">Close Dialog<\/span><\/a>") .on("click", function(event) {self.close(); event.preventDefault();}) .appendTo(this.$outer); this.$element.addClass("wd_modal"); if (this._options.autoOpen) this.open(this._options.closeExisting); }, options: function(options) { if (options) { $.extend(this._options, options); this._options.fadeDuration = parseInt(this._options.fadeDuration, 10); if (isNaN(this._options.fadeDuration)) this._options.fadeDuration = false; if (!$.isArray(this._options.margin)) this._options.margin = [this._options.margin]; if (this._options.margin.length < 2) this._options.margin[1] = this._options.margin[0]; if (this._options.margin.length < 3) this._options.margin[2] = this._options.margin[0]; if (this._options.margin.length < 4) this._options.margin[3] = this._options.margin[1]; if (!$.isArray(this._options.padding)) this._options.padding = [this._options.padding]; if (this._options.padding.length < 2) this._options.padding[1] = this._options.padding[0]; if (this._options.padding.length < 3) this._options.padding[2] = this._options.padding[0]; if (this._options.padding.length < 4) this._options.padding[3] = this._options.padding[1]; } else { return this._options; } }, reload: function(options) { if (options) { this.options(options); } this.resize(); }, open: function(closeExisting, now) { if (this.isOpen) return; var self = this; var myCloseExisting = closeExisting; if (!this.opener) this.opener = document.activeElement; if (closeExisting && modals.length > 0) { for (var i = modals.length - 1; i >= 0; --i) modals[i].close(true, true); } this.$overlay.addClass("wd_modal-current"); $("body").append(this.$overlay); if (!now && this._options.fadeDuration) { this.$overlay.fadeIn(this._options.fadeDuration, function() {self.open(myCloseExisting, true);}); } else { if (modals.length == 0) { $("body").css("overflow","hidden"); $(document).on("keydown.wd_modal", function (event) { var current = modals[modals.length - 1]; if ((event.which == 27 || event.keyCode == 27) && current._options.closeOnEscape) { current.close(); event.stopImmediatePropagation(); event.preventDefault(); } }); } if (this._options.closeOnOverlayClick) { this.$overlay.on("click.wd_modal", function (event) { if (event.target == this) { self.close(); event.preventDefault(); } }); } modals.push(this); this.$overlay.show(); var $focus = this.$element.find(":focusable"); if ($focus.length > 0) $focus[0].focus(); this.isOpen = true; this.$element.trigger("open"); } }, close: function(skipCurrent, now) { if (!this.isOpen) return; this.$element.trigger("beforeClose"); // TODO: allow closing of lower modals modals.pop(); if (modals.length == 0) { $("body").css("overflow",""); $(document).off("keydown.wd_modal"); } this.$overlay.off("click.wd_modal"); if (this.opener) { this.opener.focus(); this.opener = null; } this.isOpen = false; this.$overlay.removeClass("wd_modal-current").hide(); if (!skipCurrent && modals.length > 0) modals[modals.length-1].$overlay.addClass("wd_modal-current"); this.$element.trigger("close"); }, destroy: function() { this.close(false, true); $("body").append(this.$element); this.$overlay.remove(); }, resize: function() { if (!this.isOpen) return; var self = this; var winWidth = $(window).width(); var winHeight = $(window).height(); var margin = this._options.margin; var padding = this._options.padding; var width = winWidth - _value(margin[1], winWidth) - _value(margin[3], winWidth) - _value(padding[1], winWidth) - _value(padding[1], winWidth); var height = winHeight - _value(margin[0], winHeight) - _value(margin[2], winHeight) - _value(padding[0], winHeight) - _value(padding[2], winHeight); this.$inner.css("max-width", width); this.$inner.css("max-height", height); $.each(["Top", "Right", "Bottom", "Left"], function(i, v) { self.$outer.css("padding" + v, _value(padding[i])+"px"); }); var fixed = this.$element.find("[wd_need_fixed_container]").is(":visible"); this.$inner.css("width", width); this.$inner.css("height", height); webDriver.doResize(this.$inner); if (!fixed) { this.$inner.css("width", "auto"); this.$inner.css("height", "auto"); if (this.$element.outerHeight() > height) this.$inner.css("height", height); if (this.$element.outerWidth() > width) this.$inner.css("width", width); } } }; $.fn.wd_modal = function(options) { if (options == "exists") { return !!$(this).data("wd_modal"); } else if (typeof options == "string") { var instance = $(this).data("wd_modal"); if (!instance) return null; var args = Array.prototype.slice.call(arguments, 1); return instance[options].apply(instance, args); } else { return this.each(function() { var instance = $(this).data("wd_modal"); if (instance) { instance.reload(options); } else { $(this).data("wd_modal", new wd_modal(this, options)); } }); } }; })(webDriver.jQuery); </script> <script type="text/javascript" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA==">webDriver.pop_jQuery();</script> <script type="text/javascript" wd_script_id="subscribe_featurebox_script" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="> (function($) { webDriver.subscribeClose = function(data) { $(".wd_subscribe_modal").wd_modal("close"); }; webDriver.subscribeSubmit = function(form, id) { var $modal = $(".wd_subscribe_modal"); if ($modal.length == 0) { $modal = $('<div class="wd_subscribe_modal" style="display:none;"></div>'); $modal.wd_modal({ autoOpen: false, }); } var my_form = form; var form_data = $(form).serializeArray(); $modal.html('<div class="wd_loading">Loading...</div>'); $modal.show(); $modal.wd_modal("open", true); $modal.load( "https://press.roberthalf.com/get-news-alerts?ajax=subscribe&id="+id, form_data, function() { disable_submit(my_form, false); } ); }; })(webDriver.jQuery); </script> <script type="text/javascript" src="js/wd_form.js" wd_script_id="wd_form.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <link href="css/wd_form.css" type="text/css" rel="stylesheet" wd_script_id="wd_form.css"> <style type="text/css" wd_script_id="featureboxes_style" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="> .wd_featurebox_icon { display: inline; } .wd_featurebox_icon img { vertical-align: middle; } div.wd_featurebox_group div.wd_tabs_wrapper { border: none; border-bottom: 1px solid #E1E1E1; padding: 0 0 5px 0; } div.wd_featurebox_group div.wd_featurebox { border: none; padding: 8px 0 0 0; } div.wd_featurebox_group li.wd_tab { float: none; color: #666666; } div.wd_featurebox_group li.wd_tab-active { border: none; background-color: transparent; color: #000000; font-weight: bold; } div.wd_featurebox_group li.wd_tab-inactive { cursor: auto; } </style> <script type="text/javascript" src="js/jquery.js" wd_script_id="jquery.js" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA=="></script> <style type="text/css" wd_script_id="template teaser_list:newsfeed_releases:site style" nonce="OWNhNzY3NTZhZTk2NmMyZjBlYWJjMTNhY2Q4YmQ5NmE4NGUyYjUyMA==">.wd_newsfeed_releases-teaser .wd_date { font-weight: bold; } .wd_newsfeed_releases-teaser .wd_title { font-weight: bold; } .wd_newsfeed_releases-teaser .subscribe_link { margin-bottom: 1em; } .wd_newsfeed_releases-teaser span.wd_subscribe_email-icon { font-size: 1.2em; }</style> <link href="thirdparty/font-awesome/css/font-awesome.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <!-- end spin_special_output(head_start) --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Newsroom</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="twitter:card" content="summary" /> <meta property="og:url" content="https://press.roberthalf.com/newsroom-home" /> <meta name="image" property="og:image" content="https://press.roberthalf.com/image/Robert_Half_Logo-1200.jpg" /> <meta name="twitter:image" content="https://press.roberthalf.com/image/Robert_Half_Logo-1200.jpg" /> <link rel="icon" type="image/x-icon" href="favicon.png" /> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> <!-- Fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <link href="thirdparty/font-awesome/css/font-awesome.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <link href="thirdparty/font-awesome/css/all.min.css" type="text/css" rel="stylesheet" wd_script_id="font-awesome.min.css"> <script type="text/javascript" src="thirdparty/font-awesome/v4-shims.min.js"></script> <!-- Client Styles --> <link rel="stylesheet" href="css/client_styles.css"> <!-- <link rel="icon" href="favicon.ico" type="image/x-icon" /> --> <!-- MediaRoom Styles --> <link rel="stylesheet" href="css/jquery.fancybox.min.css"> <link rel="stylesheet" href="css/wdmodal.css"> <link rel="stylesheet" href="css/wdcontent.css"> <link rel="alternate" href="https://press.roberthalf.com/news_releases?pagetemplate=rss" type="application/rss+xml" title="News Releases | Robert Half"> <!-- begin spin_special_output(head_end) --> <link rel="canonical" href="https://press.roberthalf.com/" /> <!-- end spin_special_output(head_end) --> </head> <body class="wd_pageid_20285"> <a id="skip-nav" class="sr-only" href="#maincontent">Skip to main content</a> <header class="container-fluid sticky-top px-0"> <nav class="navbar navbar-expand-lg bg-white px-0"> <div class="container"> <a class="navbar-brand" href="https://www.roberthalf.com"><img class="rh_branding-full" src="images/Robert_Half_logo_svg.svg" alt="Robert Half"><img class="rh_branding-monogram" src="images/RH_monogram_svg.svg" alt="Robert Half"></a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav me-auto mb-2 mb-lg-0"> <li class="nav-item"> <a class="nav-link" aria-current="page" href="https://www.roberthalf.com/us/en/find-jobs">Find Jobs</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/us/en/hire-talent">Hire Talent</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/us/en/consulting">Explore Consulting Solutions</a> </li> <li class="nav-item"> <a class="nav-link" href="https://www.roberthalf.com/us/en/insights">Discover Insights</a> </li> </ul> <button class="nav-buttons search" title="search"><a href="https://www.roberthalf.com/us/en/search"><i class="fa-regular fa-search" title="search"> </i></a></button> <button class="nav-buttons sign-in" title="Sign in"><a href="https://online.roberthalf.com/s/login?c=US&d=en_US&language=en_US&redirect=false">Sign In</a></button> </div> </div> </nav> </header> <main id="maincontent"> <div class="wd_homepage-title"> <div class="container"> <div class="row"> <div class="col-12"> <h1 class="page_header">Newsroom </h1> </div> </div> </div> </div> <div class="wd_top-highlights"> <div class="container"> <div class="row"> <div class="wd_featureboxes_top_highlights wd_featureboxes-vertical"> <div id="wd_featurebox-teaser_825" class="wd_featurebox_container wd_featurebox-teaser"><div class="wd_featurebox_title">Press Releases</div><div class="wd_featurebox"><p><img src="https://rh-us.mediaroom.com/image/Press_Releases_Image%403x.jpg" /></p> <div class="wd_newsfeed_releases-teaser"> <div class="item"> <div class="wd_title"><a href="https://press.roberthalf.com/2024-11-13-Robert-Halfs-Danti-Chen-Named-to-Staffing-Industry-Analysts-2024-Global-Power-150-Women-in-Staffing">Robert Half's Danti Chen Named to Staffing Industry Analysts' 2024 Global Power 150 -- Women in Staffing</a></div> <div class="wd_date">Nov 13, 2024</div> <div class="wd_summary"><p>Danti Chen, Ph.D., Head of Data Science for global talent solutions and business consulting firm Robert Half, has been named to Staffing Industry Analysts' 2024 Global Power 150 — Women in...</p></div> </div> <div class="item"> <div class="wd_title"><a href="https://press.roberthalf.com/2024-11-13-Robert-Half-Research-Reveals-Key-Hiring-Challenges-for-Small-and-Midsize-Businesses-Heading-Into-2025">Robert Half Research Reveals Key Hiring Challenges for Small and Midsize Businesses Heading Into 2025</a></div> <div class="wd_date">Nov 13, 2024</div> <div class="wd_summary"><p>Meeting salary demands, talent shortages and extended hiring cycles are top concerns among SMBs. MENLO PARK, Calif., Nov. 13, 2024 /PRNewswire/ -- Research from global talent solutions and...</p></div> </div> <div class="item"> <div class="wd_title"><a href="https://press.roberthalf.com/2024-10-31-Robert-Half-Honored-by-Fortune-and-Forbes-for-Empowering-Women-in-the-Workplace">Robert Half Honored by Fortune and Forbes for Empowering Women in the Workplace</a></div> <div class="wd_date">Oct 31, 2024</div> <div class="wd_summary"><p>Global talent solutions and business consulting firm Robert Half (NYSE: RHI) has been named one of Fortune's Best Workplaces for Women and one of Forbes' World's Top Companies for Women 2024....</p></div> </div> </div> <p class="more"><a href="https://press.roberthalf.com/news_releases"><span>View all</span></a></p> </div></div></div> </div> </div> </div> <div class="wd_content"> <div class="container"> <div class="row"> <div class="col-12 col-md-6 col-lg-3 pb-2 wd_left-wrap"> <ul class="navbar-nav flex-column"> <li class="nav-item active"><a class="nav-link " href="https://press.roberthalf.com/newsroom-home" target="_self" >Newsroom Home<span class="sr-only">(current)</span></a></li> <li class="nav-item "><a class="nav-link " href="https://press.roberthalf.com/news_releases" target="_self" >Press Releases</a></li> <li class="nav-item "><a class="nav-link " href="https://press.roberthalf.com/contacts" target="_self" >PR Contacts</a></li> <li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="https://press.roberthalf.com/multimedia" target="_self" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Multimedia</a><i class="fa-light fa-angle-right"> </i><div class="dropdown-menu wd_subnav" aria-labelledby="navbarDropdown"> <a class="dropdown-item" href="https://press.roberthalf.com/infographics" target="_self">Infographics</a> </div> </li> <li class="nav-item "><a class="nav-link " href="https://press.roberthalf.com/spokespeople" target="_self" >Spokespeople</a></li> </ul> <div class="wd_featureboxes_left wd_featureboxes-vertical"> <div id="wd_featurebox-subscribe_1" class="wd_featurebox_container wd_featurebox-subscribe"><div class="wd_featurebox_title">Subscribe now!</div><div class="wd_featurebox"><div class="wd_subscribe_featurebox"><div class="wd_intro">Get the latest news sent to your inbox.</div> <form method="POST" class="wd_formbuilder" id="subscribe_form_1" name="formbuilderform" action="https://press.roberthalf.com/newsroom-home?submitted=1" enctype="multipart/form-data" onsubmit="disable_submit(this, true);var ok = check_required_fields(this,["subscribe_1[email]"],["subscribe_1[email]"],"#ff0000","This field is required","This field must contain a valid email address","Please fill in all required fields highlighted in red.","Please provide a valid email address."); if (!ok) {disable_submit(this,false); return false;} webDriver.subscribeSubmit(this,1); return false;"> <div class="wd_form_header"> <div class="wd_form_legend"> * Required Fields </div> </div> <div class="wd_form_field wd_form_field_pos_right"> <div class="wd_form_field_label"> <label for="formbuilderform_subscribe_1[email]">* Email</label> </div> <div class="wd_form_field_input"> <input type="text" name="subscribe_1[email]" value="" size="16" id="formbuilderform_subscribe_1[email]" /> </div> </div> <div class="wd_form_footer"> <div class="wd_form_buttons"> <input type="submit" class="wd_formbuilder_submit" name="Submit" value="Submit"> </div> </div> </form> </div></div></div><div id="wd_featurebox-standard_3515" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Contact us:</div><div class="wd_featurebox"><p><strong>Matthew Croteau</strong></p> <p>Senior Public Relations Manager</p> <p><a href="tel:1-978-252-2121">(978) 252-2121</a></p> <p><a href="mailto:matthew.croteau@roberthalf.com">Email Matthew Croteau</a></p> </div></div></div> </div> <div class="col-12 col-md-6 col-lg-9 pb-2"> <div class="row"> <div id="wd_printable_content"> <div class="wd_standard"> </div> </div> </div> <div class="row wd_featurebox_div_header"> Research and Insights </div> <div class="row"> <div class="wd_featureboxes_insights wd_featureboxes-vertical"> <div id="wd_featurebox-standard_3511" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Salary Guide</div><div class="wd_featurebox"><table width="305" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Salary+Guide+Thumbnail+305x204+Rounded.png" border="0" alt=" " title=" " /></td></tr></table> <p>Access the latest salary ranges and employment trends for 500-plus positions.</p> <p><a href="https://www.roberthalf.com/salary-guide">View more</a></p> </div></div><div id="wd_featurebox-standard_3519" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Blog</div><div class="wd_featurebox"><table width="846" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Blog_Image%403x.png" border="0" alt=" " title=" " /></td></tr></table> <p>Get advice and insight to hire engaged and productive workers or land a challenging and fulfilling job.</p> <p><a href="https://www.roberthalf.com/us/en/insights">View more</a></p> </div></div><div id="wd_featurebox-standard_3520" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Demand for Skilled Talent</div><div class="wd_featurebox"><table width="305" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/dfst24-connect-0124-na-en-newscard-305x204-round.png" border="0" alt=" " title=" " /></td></tr></table> <p>Look at the hiring landscape, how businesses are adapting and what job candidates want most from employers.</p> <p><a href="https://www.roberthalf.com/employment-trends-demand-for-skilled-talent">View more</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle wd_featureboxes-horizontal"> <div id="wd_featurebox-standard_2350" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Multimedia</div><div class="wd_featurebox"><table width="846" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Multimedia_image%403x.jpg" border="0" alt=" " title=" " /></td></tr></table> <p>Download our latest infographics, audio files and logo for news and editorial use.</p> <p class="wd_button"><a href="multimedia">View all</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle_profile wd_featureboxes-vertical"> <div id="wd_featurebox-standard_3516" class="wd_featurebox_container wd_featurebox-standard"><div class="wd_featurebox_title">Spokespeople</div><div class="wd_featurebox"><table width="1864" class="wd_imagetable" border="0" cellpadding="0" cellspacing="0" align="left" style="margin: 0px 0px 0px 0px;" role="presentation"><tr><td><img src="/image/Brandi_Circle.png" border="0" alt="" title="" /></td></tr></table> <!-- <p class="wd_execprofile_name">Paul McDonald</p> <p class="wd_execprofile_title">Senior Executive Director</p> <p>Paul McDonald is senior executive director at Robert Half, which specializes in talent solutions for the finance and accounting, administrative and customer support, marketing and creative, technology, and legal fields. He oversees partnerships and alliances for the company as well as serving as the chief spokesperson.</p> --> <p>Our workplace and careers experts are available to discuss topics including worker priorities, hiring trends, labor market insights and more.</p> <p class="wd_button"><a href="spokespeople">View all</a></p> </div></div></div> </div> <div class="row"> <div class="wd_featureboxes_middle_left wd_featureboxes-vertical"> <div id="wd_featurebox-teaser_1377" class="wd_featurebox_container wd_featurebox-teaser"><div class="wd_featurebox_title">In the News</div><div class="wd_featurebox"> <div class="wd_news_headlines-teaser"> <div class="item"><div class="item_date">Nov 15, 2024</div><div class="item_name"><a href="https://www.cio.com/article/2100525/state-of-it-jobs-mixed-signals-changes-ahead.html" target="_blank">State of IT jobs: Mixed signals, changes ahead</a></div><div class="item_summary"><div class="item_publication">CIO</div></div></div> <div class="item"><div class="item_date">Oct 16, 2024</div><div class="item_name"><a href="https://www.fox26houston.com/video/1532842" target="_blank">Houston hiring and salary trends</a></div><div class="item_summary"><div class="item_publication">FOX26 Houston</div></div></div> <div class="item"><div class="item_date">Oct 15, 2024</div><div class="item_name"><a href="https://nj1015.com/job-market-trends-2025-robert-half/" target="_blank">Want to earn more money? Go back to the office, survey finds</a></div><div class="item_summary"><div class="item_publication">NJ 101.5</div></div></div> <div class="item"><div class="item_date">Oct 14, 2024</div><div class="item_name"><a href="https://www.fox19.com/video/2024/10/14/salary-trends-2025-robert-half/" target="_blank">Salary Trends for 2025 - Robert Half</a></div><div class="item_summary"><div class="item_publication">FOX19 Cincinnati</div></div></div> <div class="item"><div class="item_date">Sep 11, 2024</div><div class="item_name"><a href="https://www.marketwatch.com/story/the-job-market-is-getting-tougher-for-workers-but-they-may-be-gaining-in-the-battle-over-remote-work-64fd9408?mod=andrew-keshner" target="_blank">The job market is getting tougher for workers — but they may be gaining in the battle over remote work</a></div><div class="item_summary"><div class="item_publication">MarketWatch</div></div></div> <div class="item"><div class="item_date">Aug 29, 2024</div><div class="item_name"><a href="https://www.usatoday.com/story/money/2024/08/29/job-growth-slowing-labor-day/74961755007/" target="_blank">Is job growth just slowing from post-pandemic highs? Or headed for a crash?</a></div><div class="item_summary"><div class="item_publication">USA Today</div></div></div> </div> </div></div></div> </div> </div> </div> </div> </div> </main> <footer class="container-fluid px-0"> <div class="upper-footer"> <div class="container"> <div class="row"> <div class="col-12 col-md-6 col-lg-3"> <h2>Services</h2> <ul> <li><a href="https://www.roberthalf.com/us/en/jobs">Browse Jobs</a></li> <li><a href="https://www.roberthalf.com/us/en/hire-talent/flexible-staffing">Contract Talent</a></li> <li><a href="https://www.roberthalf.com/us/en/hire-talent/full-time-staffing">Permanent Talent</a></li> <li><a href="https://www.roberthalf.com/us/en/consulting">Consulting Solutions</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>Areas of Expertise</h2> <ul> <li><a href="https://www.roberthalf.com/us/en/accounting-finance">Finance & Accounting</a></li> <li><a href="https://www.roberthalf.com/us/en/tech-it">Technology</a></li> <li><a href="https://www.roberthalf.com/us/en/marketing-creative">Marketing & Creative</a></li> <li><a href="https://www.roberthalf.com/us/en/administrative">Administrative & Customer Support</a></li> <li><a href="https://www.roberthalf.com/us/en/legal">Legal</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>Resources & Tools</h2> <ul> <li><a href="https://www.roberthalf.com/us/en/insights">Discover Insights</a></li> <li><a href="https://www.roberthalf.com/us/en/pay">Invoice</a></li> <li><a href="https://www.roberthalf.com/us/en/job-details-all">Job directory</a></li> <li><a href="https://www.roberthalf.com/us/en/insights/salary-guide">Salary Guide</a></li> <li><a href="https://www.roberthalf.com/us/en/login">Time Reports</a></li> <li><a href="https://www.roberthalf.com/us/en/contact">Contact us</a></li> </ul> </div> <div class="col-12 col-md-6 col-lg-3"> <h2>About</h2> <ul> <li><a href="https://www.roberthalf.com/us/en/about/about-robert-half">About Robert Half</a></li> <li><a href="https://www.roberthalf.com/us/en/about/leadership">Leadership</a></li> <li><a href="https://careers.roberthalf.com/global/en/home">Careers With Us</a></li> <li><a href="https://www.roberthalf.com/us/en/locations">Locations</a></li> <li><a href="https://www.roberthalf.com/us/en/about/investor-center">Investor Center</a></li> <li><a href="https://press.roberthalf.com/">Press</a></li> <li><a href="https://www.roberthalf.com/us/en/about/our-company/brands">Our Brands</a></li> <li><a href="https://www.roberthalf.com/us/en/about/supplier-relations">Supplier Relations</a></li> </ul> </div> </div> </div> </div> <div class="lower-footer"> <div class="container"> <div class="row"> <div class="col-12"> <!-- <a href="https://www.roberthalf.com/"><img class="footer-logo" src="images/RH_Squircle_160_svg.svg" alt="Robert Half Logo"></a> --> </div> <div class="col-12 social-media-links"> <ul> <li><a href="https://www.facebook.com/pages/Robert-Half/18244418191392"><i class="fa-brands fa-facebook" title="Facebook"> </i></a></li> <li><a href="https://www.linkedin.com/company/robert-half-international"><i class="fa-brands fa-linkedin" title="LinkedIn"> </i></a></li> <li><a href="https://twitter.com/roberthalf"><i class="fa-brands fa-twitter" title="Twitter"> </i></a></li> <li><a href="https://www.youtube.com/roberthalfna"><i class="fa-brands fa-youtube" title="YouTube"> </i></a></li> <li><a href="https://www.instagram.com/roberthalf/"><i class="fa-brands fa-instagram" title="Instagram"> </i></a></li> </ul> </div> <div class="col-12 col-lg-7 col-xl-9 legal-links"> <ul> <li><a href="https://www.roberthalf.com/us/en/fraud-alert">Fraud Alert</a></li> <li><a href="https://www.roberthalf.com/us/en/government-notice">Government Notice</a></li> <li><a href="https://www.roberthalf.com/us/en/privacy">Privacy Policy</a></li> <li><a href="https://www.roberthalf.com/us/en/terms">Terms of Use</a></li> </ul> </div> <div class="col-12 col-lg-7 col-xl-9 contact-info"> <p>© 2024 Robert Half Inc. <br> <a href="https://www.roberthalf.com/us/en/equal-opportunity-employer">An Equal Opportunity Employer</a> <br> <a href="https://www.roberthalf.com/us/en/equal-opportunity-employer">M/F/Disability/Veterans</a></p> <p>Do Not Sell or Share My Personal Information</p> </div> </div> </div> </div> </footer> <button class="back-to-top" title="Back to Top"><i class="fa-regular fa-chevron-up"> </i><span>Top</span></button> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js" integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa" crossorigin="anonymous"></script> <!-- MediaRoom Scripts --> <script src="js/jquery.min.js"></script> <script src="js/jquery.fancybox.min.js"></script> <script src="js/wdscripts.js"></script> <!-- Newsfeed Release Detail Toolbar --> <!-- PR Contacts --> <script type="text/javascript"> $(function($) { $(document).ready(function() { // Media License Agreement jQuery('.wd_downloadprompt').click(function(e) { e.preventDefault(); var iframe_url = 'https://press.roberthalf.com/index.php?s=20320'; if(iframe_url.indexOf('?') > 0) { iframe_url += '&pagetemplate=iframe_modal'; } else { iframe_url += '?pagetemplate=iframe_modal'; } var download_url = $(this).attr('href'); iframe_url += '&data=' + download_url; jQuery.fancybox.open({ src : iframe_url, type: 'iframe', toolbar : false, smallBtn : true, iframe : { css : { width : '900px' } } }) }); }); }); </script> <script> var assetDocumentLink = jQuery('.wd_pageid_34137 .wd_assets_container .wd_assets:first-child .wd_documents-detail .detail_header a').attr('href'); var assetDocumentLinkText = jQuery('.wd_pageid_34137 .wd_assets_container .wd_documents-detail .detail_header a').text(); if(assetDocumentLink) { jQuery('.wd_stories-detail > div.wd_title').append('<span class="wd_title_download_link"><a href="'+assetDocumentLink+'">'+assetDocumentLinkText+'<i class="fa fa-arrow-down"></i></a></span>'); jQuery('.wd_pageid_34137 .wd_assets_container').css('display', 'none'); } // jQuery(document).ready(function() { // setTimeout(() => { // jQuery(".wd_pageid_20290 .wd_featureboxes_middle .wd_featurebox .wd_featurebox_image").html('<a href="audio" target="_self"><img src="/rh-us/image/Default_Audio.jpg" border="0" alt="" title=""></a>'); // }, 200); // }); // Video download text var videoDownloadText = $('.wd_videos .wd_item_list .wd_item .wd_video_link_list_wrapper'); jQuery('.wd_videos .wd_item_list .wd_item').each(function(ind) { $(this).prepend(videoDownloadText[ind]); }); jQuery('.wd_videos .wd_item_list .wd_item .wd_video_link_list_wrapper li a').append('<i class="fa fa-arrow-down"></i>'); jQuery('.wd_videos-detail .wd_video_link_list_wrapper li a').append('<i class="fa fa-arrow-down"></i>'); </script> <!-- begin spin_special_output(body_end) --> <script wd_script_id="piwik_tracking_code"></script> <!-- Piwik Tracking Code --> <script type="text/javascript"> var _paq = _paq || []; _paq.push(["setCustomVariable", 1, "Content Type", "Standard", "page"]); _paq.push(["setCustomVariable", 3, "Navigation Page", "Newsroom Home", "page"]); _paq.push(["trackPageView"]); _paq.push(["enableLinkTracking"]); (function() { var u="//stats.drivetheweb.com/"; _paq.push(["setTrackerUrl", u+"piwik.php"]); _paq.push(["setSiteId", 4290]); var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript"; g.async=true; g.defer=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s); })(); </script> <noscript> <img src="https://stats.drivetheweb.com/piwik.php?idsite=4290&rec=1" style="border:0" alt="" /> </noscript> <!-- End Piwik Tracking Code --> <!-- end spin_special_output(body_end) --> <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8e776dbaaf7c3fe9',t:'MTczMjQzMDY0OC4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body> </html>