I have a column of data that contains values such as 1111,1112,1113,1234 etc. - I need to find a way to list all of the values in the column that being with 111. If it worked, it would list the first 3 values, but not the 4th of my example dataset. Also, it can't include just a left 3 character function because some occasions will need to pull all the values begining with 11134 or something longer. How is this possible?

Any help is greatly appreciated.