A filter tool using REGEX_Match([Order Number],"\d.*")
@Assuming the records you want always have a four digit prefix, followed by a hyphen, then followed by three digits, you can use Regex_Match in a filter tool to get the records you want.
@ryanzhang487
You can also try this:
REGEX_Match([Order number], "^[A-Za-z].*")

