MS Access New User

Alex501

Board Regular
Joined
Dec 11, 2015
Messages
54
Office Version
  1. 365
  2. 2019
Hi All

I've never used Access before but have been tasked with creating a DB which is as simple as possible to use for the end user.

Ideally it needs so be a simple front end that they can use the seach and add customers.

Is Access the best tool for this or shall I look elsewhere?

Thanks

Alex
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
yes, best tool but there's a learning curve since it's NOT excel.
most everything can be done with macros.

make a form, fFind,
then add a box for the search word, txtWord
then make a query to open the data using this word
qsFind = select * from table where [lastName]=forms!fFind!txtWord

then make a macro to run when the Find btn is pressed:
in macro: mFind
add event: OPENQUERY
qry name: qsFind

add the macro to the button event: ON CLICK
 
Upvote 0
Solution
yes, best tool but there's a learning curve since it's NOT excel.
most everything can be done with macros.

make a form, fFind,
then add a box for the search word, txtWord
then make a query to open the data using this word
qsFind = select * from table where [lastName]=forms!fFind!txtWord

then make a macro to run when the Find btn is pressed:
in macro: mFind
add event: OPENQUERY
qry name: qsFind

add the macro to the button event: ON CLICK
Thanks Ranman, I'll give it a go - most likely be back.
 
Upvote 0
Note that there are many pre-made Access database templates (some of them free) that you can find which a simple Google search.
So maybe search on things like "microsoft access customer database template".
 
Upvote 0

Forum statistics

Threads
1,215,111
Messages
6,123,152
Members
449,098
Latest member
Doanvanhieu

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