Trying to construct a query in Access 2007. One of the columns has the data type “Memo”. Sometimes the latest version is returned and for others the display is blank. Only if I right-click and select “Show column history” on each row, can I actually see the full set of data in this column. Is there a way through the query designer or SQL that this data can be retrieved in it’s entirety?
Share
Found the answer by defining a VBA function which returns the column history as a string. Then this function is used in the query “Field” value. Right click on “Field” cell in query builder and select “Build” from the right click menu. Here you can find the VBA function. The expression builder will look something like this:
Here is the VBA function:
Helpful reading: