The most useful kpis for tracking PHI device movement in a clinic measure whether every device or electronic medium containing ePHI has a documented custodian, approved movement record, verified backup before relocation, and evidence of secure reuse or disposal. For a practice migrating to a new EHR, the strongest KPI set combines movement-log completeness, backup verification, sanitization evidence, and overdue-exception reporting so leadership can see both compliance performance and migration risk. These measures support HIPAA Device and Media Controls at 45 CFR 164.310(d)(1), including the related requirements for disposal, media re-use, accountability, and backup before equipment movement.
Why do metrics matter for HIPAA device and media controls?
A written device-movement policy is necessary, but it does not demonstrate that the policy is being followed consistently. During an EHR migration, devices may move between exam rooms, temporary staging areas, vendor workspaces, off-site storage, and disposal vendors. The clinic may also retire legacy laptops, replace workstations, repurpose tablets, or transport encrypted backup media. Each handoff creates an opportunity for a device containing electronic protected health information to be misplaced, reused without sanitization, or moved without a recoverable backup.
HIPAA 164.310(d)(1) requires policies and procedures governing the receipt and removal of hardware and electronic media containing ePHI into and out of the facility, as well as their movement within the facility. The Accountability implementation specification at 164.310(d)(2)(iii) is addressable, meaning the practice must assess it and implement a reasonable and appropriate approach or document an equivalent alternative. For most clinics, maintaining a movement record tied to a responsible person is the practical approach.
Metrics make that record useful. They answer questions an auditor, compliance officer, or managing physician may ask: Did every retired EHR workstation have an assigned custodian? Were backups verified before migration equipment was moved? Did the IT vendor provide certificates of destruction for every discarded drive? Are exceptions being closed before they become unaccounted-for assets?
Which KPIs for tracking PHI device movement in a clinic should be on the report?
The targets below are operational targets, not HIPAA-mandated percentages. Set them in the clinic’s risk analysis, approve them through the security or compliance process, and adjust them based on the number of devices, vendor involvement, and migration schedule. For reporting consistency, count only assets classified as capable of storing, processing, or transporting ePHI, including laptops, desktops, tablets, encrypted USB media, external drives, servers, and legacy EHR backup media.
| KPI | Definition | Suggested Target | Primary Data Source |
|---|---|---|---|
| Movement record completeness | Percentage of ePHI-capable assets moved during the period with asset ID, origin, destination, date and time, movement reason, and assigned responsible person recorded. | 100% for all movements | ServiceNow Asset Management, Snipe-IT, or controlled asset-movement log |
| Approved movement rate | Percentage of movements with documented approval before the device leaves its normal assigned location, except documented emergency moves. | At least 98%; 100% for off-site removals | IT service desk tickets, migration change tickets, facilities work orders |
| Custody reconciliation timeliness | Percentage of movement records reconciled by the receiving custodian within one business day of transfer. | At least 95% | Asset system check-in records, receiving signatures, mobile asset-scanning logs |
| Pre-move backup verification | Percentage of equipment moves involving active ePHI storage that have a successful, retrievable backup documented before movement. | 100% | Veeam Backup & Replication, Datto, Acronis Cyber Protect, backup job logs |
| Media re-use sanitization evidence | Percentage of media approved for re-use with completed sanitization evidence before reassignment, such as cryptographic erase confirmation or approved wipe log. | 100% | Microsoft Intune wipe records, Jamf Pro erase logs, Blancco reports, asset reassignment tickets |
| Disposal chain-of-custody completion | Percentage of disposed assets with final disposition evidence, including serial number, disposal date, approved vendor record, and certificate of destruction or recycling. | 100% | Disposal vendor portal, certificate-of-destruction register, asset retirement records |
| Overdue movement exceptions | Number of moved assets lacking receiving confirmation, backup evidence, approval, or final disposition after the clinic’s defined deadline. | 0 overdue high-risk exceptions; all others closed within 5 business days | Dashboard exception queue, ticketing system, monthly asset reconciliation |
These PHI device-movement metrics work best when reported as both percentages and counts. A 100% backup-verification result sounds strong, but leadership should also see whether it represents 4 devices or 84 devices during a major EHR cutover. Include the denominator, reporting period, and list of exclusions in every report.
How often should the clinic report device-movement compliance?
During active EHR migration, use a weekly operational report and a monthly leadership summary. Weekly reporting is for the practice manager, IT lead, migration project manager, and any managed service provider responsible for endpoint work. It should identify specific devices requiring action before the next migration wave. Monthly reporting is for the practice owner, administrator, compliance officer, or security committee and should show trends, unresolved exceptions, and decisions needed from leadership.
What should the weekly report include?
- Movement volume by location, such as exam rooms, billing office, records area, vendor staging area, and off-site storage.
- A list of assets moved without receiving confirmation after one business day.
- Any device moved without recorded backup verification where a backup was required.
- Media awaiting sanitization before reassignment to a new EHR workflow.
- Disposal assets missing a certificate of destruction or final vendor disposition record.
- Named owners and due dates for each open exception.
What should the monthly leadership report include?
- A KPI scorecard showing current month, prior month, target, and trend direction.
- Total ePHI-capable assets in scope and total movement events.
- High-risk exceptions, their business impact, and whether ePHI exposure assessment was required.
- Vendor performance, including late pickup, incomplete destruction documentation, or missing migration-ticket approvals.
- A short narrative explaining corrective actions and any resource decision needed.
Use a simple red, yellow, and green format carefully. A red status should mean the target was missed or a high-risk asset remains unaccounted for. Yellow should indicate a trend that may miss target or an exception within its remediation window. Green should mean the target was achieved and no overdue high-risk exception exists. Do not mark a KPI green merely because no one has yet reviewed the underlying records.
How can you build a practical PHI device-movement dashboard?
For a small practice, a controlled spreadsheet may be adequate during a limited migration if it has restricted access, version control, and a defined owner. For ongoing operations, connect the dashboard to the systems that create the evidence: the asset inventory, service desk, backup platform, endpoint-management tool, and disposal-vendor records. Microsoft Power BI can connect to SQL exports, SharePoint lists, and ServiceNow reports; Microsoft Excel Power Query is often sufficient for a smaller monthly dashboard.
Create a standard asset key using the clinic asset tag first and serial number second. Require that key in every migration ticket, backup verification record, wipe report, and disposal manifest. If systems cannot integrate directly, export each source weekly into a restricted SharePoint document library and reconcile the asset key before refreshing the dashboard.
Which dashboard fields should be mandatory?
- Asset tag, serial number, device type, encryption status, and ePHI classification.
- Current location, prior location, movement date, destination, and movement reason.
- Sending custodian, receiving custodian, approver, and vendor personnel when applicable.
- Backup job ID, backup completion time, and restore-test or backup-verification status.
- Sanitization method, wipe report ID, disposal vendor, and certificate-of-destruction number.
- Exception category, risk rating, assigned owner, due date, and closure evidence.
The following query illustrates an exception view for a dashboard backed by an asset database. It flags movement events that have no receiving confirmation after one business day or, where backup is required, have no successful backup completed before the move.
SELECT
a.asset_tag,
a.serial_number,
a.device_type,
m.movement_date,
m.from_location,
m.to_location,
m.responsible_person,
m.received_by,
m.received_date,
b.backup_job_id,
b.completed_at AS backup_completed_at,
CASE
WHEN m.received_date IS NULL
AND m.movement_date < CURRENT_TIMESTAMP - INTERVAL '1 day'
THEN 'Receiving confirmation overdue'
WHEN a.backup_required = TRUE
AND (b.status <> 'Success' OR b.completed_at > m.movement_date)
THEN 'Pre-move backup missing or late'
ELSE 'Compliant'
END AS exception_status
FROM assets a
JOIN movement_events m
ON a.asset_tag = m.asset_tag
LEFT JOIN backup_jobs b
ON a.asset_tag = b.asset_tag
AND b.completed_at <= m.movement_date
WHERE a.ephi_capable = TRUE
AND m.movement_date >= CURRENT_DATE - INTERVAL '30 days'
ORDER BY m.movement_date DESC;
Configure a Power BI alert or ServiceNow scheduled report when overdue movement exceptions exceed zero, when backup verification falls below 100%, or when disposal documentation is missing more than five business days after vendor pickup. Alerts should create a ticket assigned to a named person rather than simply sending an email to a shared inbox.
How should you present these metrics to clinic leadership?
Leadership does not need a raw inventory export. Present a one-page scorecard followed by an exception appendix. Start with the compliance conclusion: for example, “All 62 devices moved during the EHR migration wave had documented custodians; two disposal certificates remain outstanding and are due Friday.” Then show the KPI table with target, actual result, prior-month result, and status.
Connect each red or yellow measure to a decision. If backup verification is slipping because the migration team is moving devices after clinic hours, ask leadership to approve a freeze window until verification is complete. If disposal evidence is late, ask whether the vendor contract requires a certificate turnaround time and whether the vendor should remain approved. If movement records are incomplete, request authority to stop a migration wave until asset tags and receiving custodians are documented.
Frame the dashboard as evidence of ongoing compliance rather than a one-time audit artifact. The clinic’s PHI movement measures should show that it can account for devices throughout the EHR transition, securely re-use or dispose of media, and retrieve information when equipment must be moved.
Next step: Before your next EHR migration wave, assign an owner for each KPI and run a baseline report on every device and medium scheduled to move.