Addiction and Treatment Statistics for Wisconsin
Updated on April 24, 2019
The state of Wisconsin has seen escalating rates of drug abuse and addiction since 2009. Local and national groups like D.A.R.E. and the Alliance for Wisconsin Youth responded by creating state-specific programs to try to improve awareness of the problem. These programs allow individuals to receive the treatment they need to live a life of sobriety.
Wisconsin Substance Abuse Statistics
Wisconsin has some of the highest rates in the U.S. for both adult and adolescent substance abuse. Among the biggest concerns is the misuse of prescriptions painkillers and the escalating number of deaths due to alcohol-related liver disease. Consider other critical statistics from Wisconsin:
- Alcohol consumption is 1.3 times higher than the national average.
- Fifteen percent of high school students admit to the illicit use of prescriptions drugs.
- In 2015, alcohol played a role in two-thirds of all motor vehicle injuries with an economic burden of almost 7 million dollars.
- The rate of drug overdose deaths increased by 24.5 percent between 2015 and 2016, according to the Centers for Disease Control and Prevention.
- The rate of overdose deaths was higher in men between the ages of 24 to 35 and women aged 35 to 54.
Introducing
virtual care
Get treatment when
and how you need it.
Choosing The Right Rehab Program In Wisconsin
Given the increasing number of substance abuse problems in Wisconsin, there is an urgent need for effective treatment programs and preventive education. The AODA system works to help state residents find the resources they need. When researching rehab programs, consider:
- Accreditation: All Wisconsin treatment centers must have state licenses and should have the certificate posted or available for review when needed. They may also carry certifications from CARF and the Joint Commission. Accreditation establishes the rehab center provides quality care and is effective.
- Evidence-based Approaches: This means the center provides programs and treatment methods based on three components: clinical experience of staff, research and evidence, and meeting the needs of patients.
- Length/Location: In general, inpatient treatment lasts from 30 to 120 days, but depends on an individual assessment. Location is significant because families should look for a center that offers them the best option, even if they have to travel.
- Aftercare and Alumni Services: Proper aftercare is critical to reducing the risk of relapse. For most treatment facilities, this means access to sober living houses, outpatient treatment, and peer support organizations like AA or NA.
- Payment: Typically, insurance plans cover a portion of rehab services. The insured should contact their insurance company to determine which services are covered.
Wisconsin Drug and Alcohol Rehab Services
Wisconsin drug and alcohol rehab programs likely offer different services. Understanding these services helps families find the right facility. Some worth knowing include:
- Drug and Alcohol Detox Programs: Detox programs help manage uncomfortable and potentially dangerous symptoms of withdrawal when a person stops using. Medically supervised detox provides a safe environment to ensure a smooth transition into rehab.
- Medication-assisted Treatment (MAT): MAT refers to the use of FDA-approved medications for opioid addiction to ease the path towards recovery. Programs include drugs like methadone to lessen dependence and reduce cravings.
- Behavioral Therapy: Behavioral therapy is the core of most treatment strategies. It allows a person to understand their addiction and find ways to avoid future substance use.
- Treatment for Co-Occurring Disorders (Dual Diagnosis): People who use drugs or alcohol tend to have an underlying mental health problem that plays a role. Treating both the addiction and mental health condition together offers the best hope of recovery.
Finding Addiction Treatment In Wisconsin
Finding the right rehab center is a complex process. The state of Wisconsin has many online resources available that can help. Families should plan to travel if necessary when looking at facilities and investigate each service offered to ensure the facility meets their need.
//$startTime = microtime(true);
require_once 'inc/db.php';
require_once 'inc/lookups.php';
$requestLookup = $requestLookup ? $requestLookup : sanitize_text_field($_GET['lookup']);
$requestState = $requestState ? $requestState : sanitize_text_field($_GET['state']);
$requestCity = $requestCity ? $requestCity : sanitize_text_field($_GET['city']);
$requestLocation = $requestLocation? $requestLocation : sanitize_text_field($_GET['location']);
$dataOnly = $dataOnly ? $dataOnly : (bool) $_GET['dataonly'];
if ($requestLookup) {
if (array_key_exists($requestLookup, $lookupGroups)) {
$lookup = $requestLookup;
if (is_array($lookupGroups[$lookup])) {
$lookupGroup = $lookupGroups[$lookup];
}
$lookupName = $lookupTitles[$lookup];
}
if (!$lookup) {
$err['lookup'] = "Sorry, we couldn't find that category.";
}
}
if ($requestState && $lookup) {
$stateSlug = str_replace('-'.$requestLookup, '', $requestState);
$state = Model::factory('State')->where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources