BustyAshley
Registered User.
- Local time
- Today, 01:30
- Joined
- Sep 22, 2015
- Messages
- 22
FROM [Total Billables Table] LEFT JOIN [10 Account Mappings] ON (nz([Total Billables Table].[Contract #],"")) = nz([10 Account Mappings].[SiteID],"");
I'm using the above to do a lookup but I realized my [Contract #] has 10 characters vs my [siteID] only having 9.
Example would be [Contract #]
WESTMAR01G
WESTMAR01L
Return values that match with [SiteID]
WESTMAR01
The last character doesn't matter for this lookup. How to I set it to look for only the 9 that matter?
I'm using the above to do a lookup but I realized my [Contract #] has 10 characters vs my [siteID] only having 9.
Example would be [Contract #]
WESTMAR01G
WESTMAR01L
Return values that match with [SiteID]
WESTMAR01
The last character doesn't matter for this lookup. How to I set it to look for only the 9 that matter?