index | search | no replies | posting guidelines | help | login | register |
Index » Products » ASP Report Wizard v2 |
| |||||||
Feb 2 2005, 2:40 PM |
| ||||||
ghost from: Washington, DC | 1. Select the Custs and Ords tables and click Build Report 2. Select the custid and custName fields from the Custs table. Also enter the relatioship in the relationship text box custs.custid = ords.CustId 3. Navigate to the section Add filters to your report. (Click Next twice) 4. Select Ords.CustID (field) and IS NULL (filter) and Click Add Filter 5. Select the option OR where it says Connect filters using 4. Select Ords.CustID (field) and is not equal to (filter), enter 2 (Value) and Click Add Filter 5. Click Next. Select Summary Report 6. Click Next. Select Add record count 7. Click Finish SELECT custs.custid, custs.custName FROM custs LEFT JOIN ords ON custs.custid = ords.CustId GROUP BY custs.custid, custs.custName, ords.CustId HAVING (((ords.CustId) Is Null Or (ords.CustId)<>"2")); ------------------------- Ghost | ||||||
Pages: (1) [1] |