I have created an MS Access Database. I succesfully run a query on the database - but I want to compress duplicate fields:
Currently I get the results:
Page One | Link One | Function One
Page One | Link One | Function Two
Page One | Link One | Function Three
All I want the query to return is:
Page One | Link One | Function One Function Two Function Three
I believe that two sub-querys are required to concatenate the Link and Function columns. If so, how can I link these two sub-querys to my main query?