I'm looking for data that begins with "0110" followed by several more numbers and some letters. I want to say if the data begins with "0110", then "comment" else "". Right now I have
IF REGEX_Match([column],'^0110\d+') then "comment" else "" endif
However this is not picking up anything. I'm assuming it has something to do with the 'd' in the formula. How can I adjust this so that it will find the correct information? Thanks!