I created measure with a filter and the field I use in that expression is a boolean type with true/false values, however the field contains null values as well.
here’s how I define the measure:
measure: aged_25_34 {
type: count
filters: {
field: age
value: "TRUE"
}
}
The query returns:
No matching signature for function UPPER for argument types: BOOL. Supported signatures: UPPER(STRING); UPPER(BYTES)
Is there any hack to get around this?