91³Ô¹ÏÍø

Watch CBS News

Nearly 50,000 Americans died by suicide in 2022, new CDC report reveals

Nearly 50,000 Americans died by suicide in 2022, the U.S. Centers for Disease Control and Prevention  Thursday.

The number of suicide deaths was on a downward trend in 2019 and 2020, but it increased by 5% in 2021, and then further increased by 2.6% in 2022 to 49,449, the CDC found.

"Mental health has become the defining public health and societal challenge of our time," said Surgeon General Dr. Vivek Murthy in a statement. "Far too many people and their families are suffering and feeling alone." 

"These numbers are a sobering reminder of how urgent it is that we further expand access to mental health care, address the root causes of mental health struggles, and recognize the importance of checking on and supporting one another," Murthy added.

Adults 65 and older saw the largest increase in suicide deaths of any age group from 2021 to 2022, with an 8.1% rise to 10,433 deaths. 

Children and young adults 10 to 24 saw the largest decrease over that time span of any age group, with a decline of 8.4%, to 6,529 suicide deaths, the CDC said. However, a CDC study published in June found that the suicide rate among that age group has trended upwards over the last two decades, rising 62% from 2007 to 2021. 

Research also shows youth mental health is in crisis more generally, with particularly concerning numbers surrounding teen girls. A March CDC survey found around 1 in 3 high school girls in the U.S. have seriously considered attempting suicide and more than half of teen girls, 57%, reported feeling "persistently sad or hopeless."

Meanwhile, adults 24 to 44 saw the largest number of suicide deaths of any age group with 16,843. It marked an increase of just 0.7% over last year.

Most racial and ethnic groups saw an increase in suicide deaths, with Native Hawaiians and other Pacific Islanders seeing the largest jump at 15.9%.

The CDC found that those who identify as American Indian or Alaska Native saw the largest percentage decrease in suicide deaths of any racial or ethnic group, dropping 6.1% from last year.

Americans who identify as White saw the largest number of deaths by suicide with 37,459, an increase of 2.1% from 2021.

More men died by suicide than women, following a trend from 2021, but both men and women saw their suicide death numbers increase by 2.3% and 3.8% respectively.

"Nine in ten Americans believe America is facing a mental health crisis. The new suicide death data reported by CDC illustrates why," Health and Human Services Secretary Xavier Becerra said in a statement. "One life lost to suicide is one too many. Yet, too many people still believe asking for help is a sign of weakness."

Since 2000, with the exception of 2019 and 2020, suicide deaths in the U.S. have been steadily rising, CDC , leading officials to urge for better mental health resources.

"The troubling increase in suicides requires immediate action across our society to address the staggering loss of life from tragedies that are preventable," said Dr. Debra Houry, the CDC's chief medical officer. "Everyone can play a role in efforts to save lives and reverse the rise in suicide deaths."

In June, the CDC used data collected in 2020 to examine depression rates, finding 18.4% of U.S. adults — nearly 1 in 5 — reported having ever been diagnosed with depression.

The numbers were much higher in some communities than others. When looking at state levels specifically, estimates ranged from 12.7% in Hawaii to 27.5% in West Virginia. County-level estimates ranged even wider, from 10.7% to 31.9%.

If you or someone you know is in emotional distress or a suicidal crisis, you can reach the by calling or texting 988. You can also .

For more information about , The National Alliance on Mental Illness (NAMI) HelpLine can be reached Monday through Friday, 10 a.m.–10 p.m. ET, at 1-800-950-NAMI (6264) or email info@nami.org.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=296763317a51cab90faa73f1bb146d5c'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });