Well, yes. On the other hand, name the program that can do what you want the
way you want.
voxorganum wrote:
jeez, isn't there a way to just click on the "binoculars" (find), type in
"123" with & or % or * or something, and have Access find the combination
in any order that way?
Access seems to be very limited when it comes to this sort of thing.
THANKS! (^_^)
:
Just thought about this.
Probably need to ensure there are no duplicates?
Again, top of the head (which is very tired and looking for a pillow):
Like "[123][123][123]" AND Left(FieldName,1) <> Mid(FieldName,2,1) And
Left(FieldName,1) <> Right(FieldName,1) AND Mid(FieldName,2,1) <>
Right(FieldName,1)
Possibly easier to just extract the numbers into seperate columns first.
That way there would be less function calls.
Regards,
Andreas
Andreas wrote:
Top of the head, you could try something like:
Like "[123][123][123]"
Regards,
Andreas
MGFoster wrote:
voxorganum wrote:
hi. i'd like to know how to do a find for a record with a number
combination, example: "123" which could be in any order in a column.
so i'd be finding any record in a column containing: 123, 132, 213,
231, 312, or 321 without having to enter each different combination.
yep, this is for a lottery database!
THANKS for any help!! (^_^)
You're talking about permutations. See this site for some formulas:
http://www.duncanwil.co.uk/permcom.html