Hi,
I have a field with letters A-Z in it. I want to split my data into four "buckets"
A-F
G-L
M-R
S-Z
I recognize that I can call out every single option in a SWITCH statement, or write a REGEX_MATCH for each of these, but is there a smarter way to handle a problem like this?
The particular function that I can't seem to reliably create is some sort of "Position in Alphabet". Is this something that exists which I just haven't found?