You can create a EXCEL-Report using that Query as a base:
SELECT *
FROM TESTCYCL /*Test Instance*/
WHERE TESTCYCL.TC_STATUS /*Test Instance.Status*/ not in ('No Run', 'Not Completed')
AND TESTCYCL.TC_ATTACHMENT ='Y'
depending on the information you want to extract, you may need to add an additional joins for the test case (from test plan) or the test set or the test set folder.
best regards,
Beate