How segmenting 90-day arrears by region, service type, and client volume reshaped Entel's call center recovery strategy — shifting focus from 'chasing percentages' to 'protecting capital'.
In telecommunications, 90-day arrears (mora 90 días) is a critical health metric. However, looking at a global percentage across millions of clients obscures actionable reality. A 9% arrears rate in a region with 1,000 clients is a local operational issue. A 4% arrears rate in a region with 1,000,000 clients is a massive financial risk.
The goal of this analysis was to move management away from reading flat Excel-style tables and towards a visual risk-matrix that allows the Collections team (Call Center) to prioritize resources based on capital exposure, segmenting by Wireline (Alámbrico) and Wireless (Inalámbrico) services.
Looking at 16x12 data grids of percentages. Management reacts to the "highest red number" regardless of underlying client volume.
Scatter plots mapping Arrears Rate vs. Client Volume. Collections team instantly identifies the "High Risk / High Volume" quadrant.
Extracting monthly snapshots of invoiced accounts and payment statuses per service ID.
Categorizing services (Wireline vs Wireless) and joining with geospatial dimension tables.
Computing 90-day arrears (Mora) and total client base (Q) partitioned by YearMonth and Region.
-- Example logic for aggregating arrears by region and service type
WITH ClientStatus AS (
SELECT
r.region_name,
s.service_type, -- 'Alámbrico' or 'Inalámbrico'
b.period_yyyymm,
COUNT(DISTINCT b.client_id) AS q_clientes,
SUM(CASE WHEN c.days_overdue >= 90 THEN 1 ELSE 0 END) AS q_mora_90
FROM fact_billing b
LEFT JOIN fact_collections c ON b.invoice_id = c.invoice_id
JOIN dim_region r ON b.region_id = r.region_id
JOIN dim_service s ON b.service_id = s.service_id
GROUP BY 1, 2, 3
)
SELECT
region_name, service_type, period_yyyymm,
q_clientes,
ROUND((q_mora_90 * 100.0) / q_clientes, 2) AS tasa_mora_pct
FROM ClientStatus;The quadrant defines the action. Atacama has a high rate (~8.9%) but very low volume. Valparaíso has a lower rate (~4.3%) but massive volume. Collections focus should prioritize Valparaíso to recover the most capital, not Atacama just because its percentage is red.
Data Quality Catch: Looking at the raw data for Q1 2023, the arrears rate suddenly drops to exactly 0.00% across all regions. This isn't a miraculous recovery; it's an unclosed financial month in the database. Spotting this anomaly before presenting to the board prevents loss of trust in the entire report.
"Effective collections isn't about chasing every debt; it's about chasing the right debt based on capital exposure."
This case demonstrates the ability to translate raw financial data into strategic, actionable matrices for C-Level management, while maintaining strict data quality defenses.
Contact Javier