I have a query where I need to pull up a list of numbers between [First] and [Last]. The thing is, sometimes the last number has a decimal, and sometimes it doesn't. If it does, then I need all of the decimals of that number.
For example:
First = 1
Last = 5
Numbers:
1
2
3
4
5.1
5.2
5.3
So I need it to pull up all of the 5.__s.
My first thought was to try and use a wildcard in the Between statement so that it pulls up all of those numbers as well as all of them in between:
Between ([First ID:] & "*") and ([Last ID:] & "*")
But that doesn't work. Is there any way I can get it to?
Thanks!
For example:
First = 1
Last = 5
Numbers:
1
2
3
4
5.1
5.2
5.3
So I need it to pull up all of the 5.__s.
My first thought was to try and use a wildcard in the Between statement so that it pulls up all of those numbers as well as all of them in between:
Between ([First ID:] & "*") and ([Last ID:] & "*")
But that doesn't work. Is there any way I can get it to?
Thanks!