Field Details: coll_region_code

Back to Fields
Basic Information
Field Name: coll_region_code
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: TEXT
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-28 05:40:20
Metadata
Display Name: Region Code
Categories: COLLECTIONS
Group: Geographic Metrics
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if raw_data.region is defined %}
                "{{ raw_data.region }}"
            {% elif raw_data.state is defined %}
                {{ lookup_region_by_state(raw_data.state) }}
            {% else %}
                "UNKNOWN"
            {% endif %}