Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 593 Bytes

expect_column_sum_to_be_between.md

File metadata and controls

15 lines (12 loc) · 593 Bytes

expect_column_sum_to_be_between (source)

Expect the column to sum to be between a min and max value

Applies to: Column

tests:
  - dbt_expectations.expect_column_sum_to_be_between:
      min_value: 1 # (Optional)
      max_value: 2 # (Optional)
      group_by: [group_id, other_group_id, ...] # (Optional)
      row_condition: "id is not null" # (Optional)
      strictly: false # (Optional. Default is 'false'. Adds an 'or equal to' to the comparison operator for min/max)