I have two tables in an MS Access database as shown below.
Employee table:
Salary table:
I have created a query for the summary of salaries for each employee, to be shown as Year based.
Query:
SELECT Employee.EmployeeID, Employee.Name, Salary.AnnualYear,
Salary.MinSalary, Salary.Salary, Salary.MaxSalary
FROM Employee INNER JOIN Salary ON Employee.EmployeeID=Salary.EmployeeID;
Query result:
What I want to achieve is,
To create a Report to show the details as Year based.
Report achieved so-far:
expected report:
Will Report wizard be able to help me to achieve the expected report?
Or Do I have to do any VBA programming?