Numeric Max¶
Check: numeric-max-check
Purpose: Validates that values in numeric columns do not exceed a defined maximum. A row fails if any selected column contains a value greater than max_value.
Use the inclusive parameter to control boundary behavior:
inclusive: false(default) —value < max_valueinclusive: true—value <= max_value
Typical Use Cases¶
- Ensure prices, quantities, or KPI values do not exceed defined upper limits.
- Validate that percentages or scores stay at or below 100.
- Detect data entry errors or system anomalies producing out-of-range values.