Analysis Report One - What’s Your Data Strategy

Author

Vandelyn Nichols


Executive Summary

Healthcare organizations generate massive amounts of data, yet turning that information into meaningful action remains a challenge. A review of What’s Your Data Strategy? and supporting healthcare research reveals a common issue: organizations often focus too heavily on either managing data risk or creating value from data, rather than finding the right balance between the two. Strong governance, data quality, privacy, and compliance create the foundation for trust by ensuring information is accurate, consistent, and reliable. While these capabilities help reduce risk and build confidence in the information being used, the greatest value comes when that foundation is paired with analytics and decision-support tools that improve clinical and operational decision-making.

Healthcare operates in a uniquely complex environment because patient information is highly sensitive, heavily regulated, and directly connected to patient safety. At the same time, healthcare leaders are expected to improve patient flow, staffing efficiency, resource allocation, and overall organizational performance. Meeting those expectations becomes difficult when the information needed to support decisions is spread across multiple systems and departments. Research shows that many healthcare organizations face challenges related to fragmented systems, inconsistent data definitions, interoperability issues, and the translation of large volumes of information into actionable insights.

A balanced data strategy is essential for healthcare organizations. Addressing challenges such as fragmented systems, inconsistent information, and growing operational demands requires clear governance structures, standardized data definitions, and accountability for data quality while continuing to expand analytics capabilities that support clinical and operational decision-making. Organizations that achieve this balance are better equipped to improve patient outcomes, operate more efficiently, and make better use of the data they already collect.


Introduction

Although organizations collect more data than ever before, many still struggle to turn that information into actionable results. The challenge is not collecting more data, but developing a strategy that ensures the data is accurate, trusted, accessible, and ultimately useful to the people making decisions. Simply having access to large amounts of information does not automatically lead to better decisions, improved performance, or a deeper understanding of what is happening within the organization.

A central theme of What’s Your Data Strategy? is the need to balance two important priorities: protecting information and using it. Defensive data strategies focus on governance, privacy, security, compliance, and data quality to ensure information is accurate, consistent, and properly managed. Offensive data strategies focus on using that information to support analytics, forecasting, decision-making, and organizational improvement. While defensive efforts help reduce risk and build trust in the underlying information, offensive efforts help organizations create value by turning information into meaningful action (DalleMule and Davenport 2017).

Many organizations naturally lean toward one side of this equation. Some invest heavily in governance and control but fail to fully leverage their data to generate meaningful insights, while others move quickly into dashboards, analytics, and predictive modeling without first establishing the standards needed to ensure the underlying data can be trusted. The appropriate balance is not the same for every organization and often depends on industry requirements, regulatory pressures, and strategic priorities. Long-term success depends on finding the right balance between these approaches and aligning that strategy with the organization’s goals, operating environment, and tolerance for risk (DalleMule and Davenport 2017).

Another challenge is that different parts of a business often need different views of the same information. Finance, operations, clinical teams, and leadership may use information differently, but they must still work from a common, trusted foundation. Achieving that balance requires clear ownership, shared definitions, and accountability for how information is managed across the organization. Governance helps create consistency while still allowing departments the flexibility to use information in ways that support their specific needs. Technology plays an important role, but technology alone is not a strategy. Sustainable success depends on leadership, governance, and a deliberate approach to turning information into better decisions, improved performance, and stronger patient outcomes (DalleMule and Davenport 2017).


The Healthcare Context

The challenges described in What’s Your Data Strategy? are especially visible in healthcare, where data quality, accessibility, and decision-making can directly affect both patient outcomes and operational performance. Healthcare systems generate enormous amounts of information through electronic health records, laboratory and imaging systems, pharmacy platforms, billing applications, and operational databases. However, much of this information remains fragmented across systems and departments, making it difficult to create a complete view of clinical and organizational performance (DalleMule and Davenport 2017).

Fragmented systems, inconsistent definitions, and limited interoperability remain common challenges across healthcare. Clinical teams, finance departments, operations leaders, and quality teams often rely on systems that do not communicate effectively with one another. As a result, organizations may have access to large volumes of data yet still find it difficult to answer basic questions about performance, resource utilization, outcomes, and future needs. Healthcare can quickly become data-rich but insight-poor.

These challenges are particularly important because healthcare operates within a highly regulated environment. Patient information is sensitive, privacy requirements are strict, and data errors can affect reimbursement, quality reporting, operational planning, staffing decisions, and ultimately the care patients receive. Research has shown that poor data quality can negatively affect decision-making and organizational performance, highlighting the need for standardized definitions, governance structures, and accountability for data quality (Gavgani and Pourrasmi 2024; Gupta, n.d.).

At the same time, healthcare leaders face growing pressure to use data more effectively. Rising costs, workforce shortages, capacity constraints, and increasing demands for quality improvement require faster and more informed decision-making. Predictive analytics and decision-support tools can help identify high-risk patients, improve patient flow, optimize staffing, support capacity planning, and allocate resources more effectively.

This capability is particularly important for nutrition-related conditions. Research has shown that malnutrition is independently associated with higher mortality, longer hospital stays, increased infections, ICU readmissions, and greater healthcare resource utilization. Early identification of at-risk patients creates opportunities for earlier intervention, potentially improving outcomes while reducing avoidable resource use and associated costs (Lew et al. 2017).

Healthcare data challenges do not end when a patient leaves the hospital. Effective transitions of care depend on accurate and timely information exchange between hospitals, skilled nursing facilities, rehabilitation centers, and other post-acute care providers. Research has identified communication breakdowns and information-transfer gaps as important contributors to avoidable rehospitalizations and disruptions in patient care, highlighting the need for standardized and accessible patient information across care settings (Keim et al. 2020).

These challenges illustrate how defensive and offensive data strategies work together in healthcare. Accurate documentation creates a trusted foundation for decision-making, while analytics can be used to identify high-risk patients, prioritize resources, support earlier intervention, and improve outcomes. Nutrition-related care provides a useful example of both approaches. The analyses that follow use nutrition-related data to demonstrate both approaches. The first identifies patients with diagnoses associated with malnutrition risk at admission and illustrates how clinical data can support earlier intervention and resource prioritization. The second examines discharge locations for patients with nutrition-related diagnoses and highlights the importance of accurate documentation, continuity of care, and data quality as patients transition between care settings.


Data Visualizations

Visualization One: Offensive Data Strategy

Malnutrition Risk Identification at Admission

SELECT subject_id, diagnosis
FROM admissions
WHERE diagnosis LIKE '%nutrition%'
   OR diagnosis LIKE '%failure to thrive%'
   OR diagnosis LIKE '%dysphagia%'
   OR diagnosis LIKE '%hypoglycemia%'
   OR diagnosis LIKE '%hypokalemia%'
   OR diagnosis LIKE '%hyponatremia%'
   OR diagnosis LIKE '%malnutrition%'
   OR diagnosis LIKE '%cachexia%'
   OR diagnosis LIKE '%protein%'
ggplot(data = nutrition_admissions,
       aes(x = diagnosis)) +
  geom_bar() +
  coord_flip() +
  theme_minimal() +
  labs(
    title = "Identifying Patients at Risk for Malnutrition Upon Admission",
    subtitle = "Admissions with nutrition-related diagnoses",
    x = "Diagnosis",
    y = "Number of Patients"
  )

This visualization highlights patients with diagnoses commonly associated with malnutrition risk, including conditions such as malnutrition, failure to thrive, dysphagia, cachexia, and other nutrition-related diagnoses. The findings demonstrate that a meaningful number of patients enter the hospital with conditions that may increase their risk of poor nutritional status and adverse clinical outcomes. Identifying these patients at admission creates an opportunity for earlier intervention and more proactive nutrition care. This is particularly important because malnutrition has been associated with higher mortality, longer hospital stays, increased infections, ICU readmissions, and greater healthcare resource utilization (Lew et al. 2017).

From a data strategy perspective, this represents an offensive use of healthcare data. Rather than focusing solely on documentation and compliance, the information is being used to support action and improve decision-making. Existing clinical data can help identify patients who may benefit from earlier nutrition assessment, closer monitoring, and targeted interventions before complications develop. This allows healthcare teams to move beyond simply recording information and begin using it to guide care.


Visualization Two: Defensive Data Strategy

Recommendations for Industry

The findings from both analyses suggest several opportunities for healthcare leaders to strengthen their data strategies while improving patient care and operational performance.

First, healthcare organizations should implement standardized nutrition-risk screening at admission. Diagnosis-based alerts and flags within the electronic health record can help automatically identify patients with conditions associated with malnutrition risk and prioritize them for Registered Dietitian assessment. Standardizing this process can support earlier intervention, improve the allocation of nutrition resources, and shift care from a reactive approach to a more predictive and preventive model of care.

Second, healthcare organizations should strengthen transition-of-care documentation. Standardized discharge destination fields, consistent documentation requirements, and improved information sharing between care settings can help ensure key nutrition-related information follows the patient after discharge. Improving the quality and consistency of transition-of-care documentation can strengthen continuity of care, reduce communication gaps, and support more reliable reporting and decision-making.

Finally, healthcare organizations should continue investing in data quality and governance. This includes defining key documentation fields consistently, auditing high-risk patient records for completeness and accuracy, and establishing standards that improve the reliability of clinical information across departments and care settings. Accurate, trusted data is essential because both offensive and defensive data strategies depend on a strong informational foundation.

Together, these recommendations reinforce the central message of What’s Your Data Strategy?. Healthcare organizations create the greatest value when they balance strong governance and data quality with analytics and decision-support capabilities that transform information into meaningful action. Translate your research and data findings into actionable, strategic recommendations for healthcare administrators looking to improve operational or defensive data strategies.


References

DalleMule, Leandro, and Thomas H Davenport. 2017. “What’s Your Data Strategy.” Harvard Business Review 95 (3): 112–21.
Gavgani, Vahideh Zarea, and Aniseh Pourrasmi. 2024. “Data Governance Navigation for Advanced Operations in Healthcare Excellence.” Depiction of Health 15 (3): 249–54.
Gupta, Saurabh. n.d. “Data Governance in Healthcare ELT Processes: Challenges and Solutions Explore the Challenges of Data Governance in ELT Processes Within Healthcare and Propose Best Practices for Compliance and Quality Assurance.”
Keim, Susan K, Sarah J Ratcliffe, Mary D Naylor, and Kathryn H Bowles. 2020. “Patient Factors Linked with Return Acute Healthcare Use in Older Adults by Discharge Disposition.” Journal of the American Geriatrics Society 68 (10): 2279–87.
Lew, Charles Chin Han, Rosalie Yandell, Robert JL Fraser, Ai Ping Chua, Mary Foong Fong Chong, and Michelle Miller. 2017. “Association Between Malnutrition and Clinical Outcomes in the Intensive Care Unit: A Systematic Review.” Journal of Parenteral and Enteral Nutrition 41 (5): 744–58.