Link to home
Start Free TrialLog in
Avatar of Tom Crowfoot
Tom CrowfootFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Convert memo field to short text

Dear Experts,

I am building a bolt on Access tool that takes data from a third party app via an odbc connection. One of the fields I need to join from the app is a long text field ([ProgressStatus]) so whenever I try to join it to another field I keep getting and error message saying you can't join memo fields.

I think I need to convert it to short text so I can join it to other fields - how can I do this in a  query? - a screen shot of the source table is attached & shows the properties of that field

Can anybody help?

User generated image
ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

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
Avatar of crystal (strive4peace) - Microsoft MVP, Access
crystal (strive4peace) - Microsoft MVP, Access

use criteria on the grid to join on the first 255 characters of each field

field --> ProgressStatus255: left([ProgressStatus],255)
criteria --> left([otherMemo],255)
Avatar of Tom Crowfoot

ASKER

Perfect, works a treat, thank you very much, especially so quickly