Hey folks. I am working with a VERY simple form/subform for an ongoing customer survey. There are 3 categories with 12 questions each. Only one question from each category will be asked when a customer places an order. So if customer A places 12 orders in one month, it would take one month to complete that particular record. Customer B may take six months. Each response asks for a numerical 1-5 value.
I need to able to show a running average per customer record. Problem is that for the 12 questions, only 5 may have been answered, so I need to show only not null entries, and then average those. I have never used SQL, and am trying to figure it out.So far I have the following,
SELECT [Delivery Performance], [Product Quality], [Product Cost], [Ease of Doing Business], [Claims Processing], [Customer Service], [Packaging Quality], [Invoicing], [Order Processing], [Product Development], [Sample Submission], [Pricing]
FROM sub_t
WHERE Is Not Null;
I am getting a syntax/return error for the not null on what little I have so far, and still don't know how to get the average.
Any help would be appreciated.
I need to able to show a running average per customer record. Problem is that for the 12 questions, only 5 may have been answered, so I need to show only not null entries, and then average those. I have never used SQL, and am trying to figure it out.So far I have the following,
SELECT [Delivery Performance], [Product Quality], [Product Cost], [Ease of Doing Business], [Claims Processing], [Customer Service], [Packaging Quality], [Invoicing], [Order Processing], [Product Development], [Sample Submission], [Pricing]
FROM sub_t
WHERE Is Not Null;
I am getting a syntax/return error for the not null on what little I have so far, and still don't know how to get the average.
Any help would be appreciated.