Data in a table in access

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
767
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I am new to access and could do with being pointed in the right direction. My query is?

I have a database already created, but would like a "Front Page" to open instead of the raw data. I could do with being pointed in the right direction as i would like to put names on the "Front Page" and tyhe data be added up into numbers.
ie.

Gavin Mazza 6
John Jones 10

Thanks
Gav
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hi Gavin,

You need to look into queries and forms and/or reports.

The query will perform the calculations you want and the form and/or report will display the results in any format you choose.

So if your table has 2 columns, the first has your names and the second has the numbers. You'd create an SQL query something like
Code:
SELECT MyNames, SUM(Numbers) AS Total
         FROM MyTable
         GROUP BY MyNames

The query will result in a table with two columns called MyNames and Total - I've created the table using SQL rather than the GUI as it's easy to show on here. You can then use the form or report wizard to display the results of the query (or create a blank form and do it yourself).
 
Upvote 0

Forum statistics

Threads
1,214,886
Messages
6,122,093
Members
449,064
Latest member
Danger_SF

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top