How this tool computes its result
retainedCustomers = endingCustomers − newCustomers; retentionRate = (retainedCustomers / startingCustomers) × 100; churnRate = 100 − retentionRate. The component validates startingCustomers > 0 ("must be greater than zero") and that endingCustomers/newCustomers are not negative, but does not validate the relationship between newCustomers and endingCustomers.
