Richard Horne
Member
- Local time
- Today, 19:53
- Joined
- Oct 15, 2020
- Messages
- 55
Hey guys, hoping someone can help.
I have a field (string/varchar) in a table, called carton_number that stores carton numbers in various ways.
1) They could be single cartons so 2 or 10 or 25
2) They can be comma separated to indicate multiple cartons so 1,2,3,4,5 or 10,20,30
3) They can be indicated by a range so 1-5 or 1-100 or 25-30
I'm trying to build a single query that will allow me to filter records using all 3 of the above methods.
1) and 2) can be queried using the LIKE operator with wildcards, e.g. '%STRING%' but if given the range 1-5 and you queried LIKE '%2%' then 1-5 would not show in the results because there's no 2 in the string.
Is there a way anyone can think of to cover all three options?
I considered exploding the ranges out into an invisible text box so 1-5 would become 1,2,3,4,5 but of course these exploded strings can't be queried as part of the form's recordsource, but also 1-150 would produce too big a string, so I'm at a bit of a loss.
I have a field (string/varchar) in a table, called carton_number that stores carton numbers in various ways.
1) They could be single cartons so 2 or 10 or 25
2) They can be comma separated to indicate multiple cartons so 1,2,3,4,5 or 10,20,30
3) They can be indicated by a range so 1-5 or 1-100 or 25-30
I'm trying to build a single query that will allow me to filter records using all 3 of the above methods.
1) and 2) can be queried using the LIKE operator with wildcards, e.g. '%STRING%' but if given the range 1-5 and you queried LIKE '%2%' then 1-5 would not show in the results because there's no 2 in the string.
Is there a way anyone can think of to cover all three options?
I considered exploding the ranges out into an invisible text box so 1-5 would become 1,2,3,4,5 but of course these exploded strings can't be queried as part of the form's recordsource, but also 1-150 would produce too big a string, so I'm at a bit of a loss.
Last edited: