I have two tables (each in an Access DB) -- called LinkedTable1 and LinkedTable2 linked to my working Access database. I got them on my computer after downloading them from a SharePoint site (Actions -> Open with Access).
In each of LinkedTable1 and LinkedTable2 there's a Memo field that contains a GUID. This GUID links the two tables.
I'd like to use these GUIDs in a query, but when I try to JOIN them within Query Design, I get told that I cannot join on Memo fields.
I tried creating an expression to convert the field to a Text field:
GUID_Text: CStr( Left$( [LinkedTable1]![GUID_Memo], 255 ) )
I also tried converting the field to a GUID:
GUID: GUIDFromString( [LinkedTable1]![GUID_Memo] )
I did this on each of the linked tables. Both time, when I tried to execute the query, I got a type mismatch error.
Any ways around this?