Is there a way to use Greater then and less then with Like operater? (1 Viewer)

smercer

Registered User.
Local time
Today, 09:19
Joined
Jun 14, 2004
Messages
442
Hi all

I was wondering if there is a way to use the like operater with the less then "<" and greater then ">" signs
tried using:
Code:
If Left([ISBN_Number], 3) Like [#00-#19] Then

but does not work.

Does anyone have any ideas?

Thanks in advance
 

Adrianna

Registered User.
Local time
Yesterday, 19:19
Joined
Oct 16, 2000
Messages
254
Assuming [#00-#19] is a numeric field, you would not use "LIKE". You can simple replace it with the < or > symbol.

If Left([ISBN_Number], 3) > [#00-#19] Then
 

Users who are viewing this thread

Top Bottom