HI - any MS Access experts out there - a bit of help would be appreciated. I have this MS Access query code:
Which produces this - populating every field on every row. I want the output to only populate columns 1 and 2 if the data is unique, but always to populate column 3.
This is what I get
Link to image
This is what I want
Link to image
Any help would be appreciated
Code:
SELECT [Catalog section].sPageName, [Catalog section].sPageTitle, Product.[Short description] FROM [Catalog section] INNER JOIN Product ON [Catalog section].nSectionID = Product.nParentSectionID WHERE Product.[Product Reference] not like '*!*' AND Product.[Price] <> 0 ORDER BY sPageName ;
This is what I get
Link to image
This is what I want
Link to image
Any help would be appreciated
Comment