I read the note about adding the field Computername to the output of the report to get the resulting drill down link.
I don't get the desired result (the whole computername column does not show, just the caption and portname).
to keep it simple my code is
************************************************************************
Select Top 1000000 tblComputers.Computername, tblPrinters.Caption,
tblPrinters.Portname
From tblComputers Inner Join
tblPrinters On tblComputers.Computername = tblPrinters.Computername
************************************************************************
What am I missing?