Since you are so new, I’d suggest that you do this in four steps, I’ve slowed this right down in hope that it helps you learn (a) how to write enquiries and (b) think in the smaller steps that are sometimes necessary before leaping into the more complicated single step versions that many of the experts here can teach you.
First to need to know how many enquiries each centre had in the time period you are interested in, so each time you run this query you will need to ensure that you specify the dates you are interested in (in red below – note that this gave US format even though in design view I typed UK format it will work with whatever version you have setup on your computer). This change can be made by hand or by use of variable, for the time being, stick with doing it by hand until you grow more familiar with Access and what it can do. First query is:
Qry_DailyTotalInWeek
SELECT Enquiry_Form.Centre_Name, Enquiry_Form.Enquiry_Date, Count(Enquiry_Form.Enquiry_Form_no) AS CountOfEnquiry_Form_no
FROM Enquiry_Form
GROUP BY Enquiry_Form.Centre_Name, Enquiry_Form.Enquiry_Date
HAVING (((Enquiry_Form.Enquiry_Date) Between #12/1/2015# And #12/7/2015#));
Next you’ll need to know how many enquiries were received in total per centre, note that here you are using the first query not the table to get the numbers you want.
Qry-WeeklyTotal
SELECT [Qry-DailyTotalInWeek].Centre_Name, Sum([Qry-DailyTotalInWeek].CountOfEnquiry_Form_no) AS Enquiries, [Qry-TotalInWeek].Total
FROM [Qry-DailyTotalInWeek], [Qry-TotalInWeek]
GROUP BY [Qry-DailyTotalInWeek].Centre_Name, [Qry-TotalInWeek].Total;
Next you want to know how many enquiries you had in total so you can work out the total in the week, again working off the query not the table.
Qry-TotalInWeek
SELECT Sum([Qry-DailyTotalInWeek].CountOfEnquiry_Form_no) AS Total
FROM [Qry-DailyTotalInWeek];
Finally you want to see the report by centre name, with the weekly total and the percentage calculation, which the following gives you:
Qry-WeeklyEnqByCentre
SELECT [Qry-WeeklyTotal].Centre_Name, [Qry-WeeklyTotal].Enquiries, [Enquiries]/[total] AS Perc
FROM [Qry-WeeklyTotal];
As an aside, please note that these are all very basic queries, if you go into CREATE and use QUERY DESIGN, you can add tables and do some playing around with queries, test out what does what. The button you might find particularly useful is the the Sigma (Totals) button. Play with what that can do, see for yourself how a small change will make a difference. Also in this mode (you can turn all of the above SQL view to Design view very easily) use the property sheet to change formats, this is important in Qry-WeeklyEnqByCentre as the “Perc” column needs to be set up to show as a percentage rather than then decimal it calculates. If you have trouble with this, suggest you search for Access tutorials to work through, there are plenty out there, that will help you get to grips with the various inbuilt features of query creation and how to format output.
Hope this helps.