Close

Main navigation

Pre-Pharmacy

Bachelor of Science

Overview

Pharmacists dispense prescription medications to patients and offer expertise in the safe use of prescriptions. They also may conduct health and wellness screenings, provide immunizations, oversee the medications given to patients, and provide advice on healthy lifestyles.  

Program
Details

Location

On Campus

Program Details

Pre-professional programs prepare students for entry into numerous professional programs. The programs are not majors (i.e., a pre-med or pre-physical therapy major) but rather are tailored courses within existing majors. As students determine their program of interest, faculty work one on one with them to ensure they complete the prerequisite course requirements for their professional program(s) of interest.

Students intending to apply to a graduate pharmacy program would be best prepared by completing a Biochemistry B.S., Biology B.S., or Chemistry B.A.

Concordia University St. Paul’s 3+4 partnership with Concordia University Wisconsin allows eligible students to complete their Biology B.S. or Chemistry B.A. and a doctor of pharmacy in seven years. Students will spend their first three years at Concordia, St. Paul, and the final four years at Concordia, Wisconsin.

Education & Training/Residency

  • Degree: Doctoral or professional degree
  • Education: 4 year undergraduate degree, 4 years in a Pharm.D. program. Following graduation from a Pharm.D. program, pharmacists seeking an advanced position, such as a clinical pharmacy or research job, may need to complete a 1- to 2-year residency. Pharmacists who choose to complete the 2-year residency option receive additional training in a specialty area such as internal medicine or geriatric care.

Information from the Bureau of Labor Statistics (BLS) 

Alumni Graduate School Placements

  • University of Minnesota
  • University of Minnesota Duluth
  • Concordia University Wisconsin

Learn More About CSP

Undergraduate RFI

Name(Required)
May We Text You?
UTM Hidden Field Code //Create program name from url // Use window.onload to ensure the code runs after all page resources are loaded window.onload = function () { // Get the current URL const currentURL = window.location.href; // Find ".edu/" in the URL const eduIndex = currentURL.indexOf(".edu/"); if (eduIndex !== -1) { // Extract everything after ".edu/" and remove any query string const programNameWithQuery = currentURL.substring(eduIndex + 5); const programNameWithoutQuery = programNameWithQuery.split("?")[0]; // Set the value of the hidden input field by name const programNameField = document.querySelector('[name="program_name"]'); if (programNameField) { programNameField.value = programNameWithoutQuery; // Add an event listener to the input field to remove slashes programNameField.addEventListener("input", function () { this.value = this.value.replace(/\//g, ""); }); } } }; //Push cookied UTMs to hidden fields // Function to get the value of a cookie by its name. function getCookieValue(cookieName) { var name = cookieName + "="; var decodedCookies = decodeURIComponent(document.cookie); var cookieArray = decodedCookies.split(';'); for (var i = 0; i < cookieArray.length; i++) { var cookie = cookieArray[i].trim(); if (cookie.indexOf(name) === 0) { return cookie.substring(name.length, cookie.length); } } return ""; } // Function to populate form fields with UTM cookie values. function populateFormFields() { // Define a mapping of cookie names to form field names. var cookieFieldMap = { "utm_id": "cookie_utm_id", "utm_source": "cookie_utm_source", "utm_medium": "cookie_utm_medium", "utm_campaign": "cookie_utm_campaign", "utm_term": "cookie_utm_term", "utm_content": "cookie_utm_content", "utm_source_platform": "cookie_utm_source_platform", "utm_campaign_id": "cookie_utm_campaign_id" }; // Iterate through the cookie-field mapping and populate the form fields. for (var cookieName in cookieFieldMap) { var fieldName = cookieFieldMap[cookieName]; var fieldValue = getCookieValue(cookieName); // Find the form field by name and set its value. var field = document.getElementsByName(fieldName)[0]; // Assuming the first matching field. if (field) { field.value = fieldValue; // Log the field name, cookie name, and value to the console for testing. console.log("newcode #1"); console.log("Field Name: " + fieldName); console.log("Cookie Name: " + cookieName); console.log("Field Value: " + fieldValue); } else { // Log a message if the field is not found. console.log("Field not found for cookie: " + cookieName); } } } // Add an event listener for DOMContentLoaded to execute the code when the DOM is loaded. document.addEventListener("DOMContentLoaded", function () { // Call the populateFormFields function on DOM load. populateFormFields(); }); // Add an event listener for form submission to log field values when the form is submitted. var form = document.forms[0]; // You might need to specify the correct form index. if (form) { form.addEventListener("submit", function (event) { // Log form field values before submitting the form. populateFormFields(); }); }