Link to home
Start Free TrialLog in
Avatar of Sandra Smith
Sandra SmithFlag for United States of America

asked on

StrComp inACCESS 2010 query not returning results

This should be so easy as I searched onoline and what I have is supposed to work, but I keep getting #Func as the result.  All I want to know is if tlkLookupValues = tlkLookupID.

SELECT tlkLookupValues.LookUpID, tlkLookupValues.LookupValue, StrComp([LookupID],[LookupValue]) AS Different
FROM tlkLookupValues;
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you can also use

StrComp([LookupID],[LookupValue], 1)
have you tried doing a C&R,
looked for missing references

DEBUG>Compile and correct any errors
Avatar of Sandra Smith

ASKER

Perfect, thank you.