|
Forum home »
Delegate support and help forum »
Microsoft Access Training and help » access database course - Creating reports
access database course - Creating reports
The UK's most regular instructor-led training courses.
Training information: access database course
· Access training
· Microsoft Access Training London See also
· microsoft access training
· access vba courses
· access database course Resolved · Low Priority · Version Standard
Creating reports
by - delegate Adeolu [2 posts] (2007 Dec 19 Wed, 16:38) Reply
How can i protect my data locked from someone else to overwrite it?
RE: Creating reports
Hi Adeolu, Thank you for your post; It is possible to set user rights to different areas of your database, thus allowing different people access to different areas of your data, this procedure is covered in our Access Advanced course, and is a bit too complex to be described successfully here.
As for protecting data in your report, the data used to populate your report will depend on a table or query, thus protecting the table or query will in turn add protection to the data in the report, (which is only a print preview.) I hope that explains and maybe helps, best regards Pete
Related articles
· MS Access and Database Normalisation
· Microsoft Access Training Opens Doors
· Microsoft Access Mistakes to Avoid
· Why consider Access Visual Basic training?
· Quick Microsoft Access Course: Creating an Inventory Control Database in 8 Simple Steps
| Access tip:
Display current date & time in column of any width
The worksheet function =NOW() returns the current date & time. When entered into a column which is not wide enough to display the value NOW returns, the cell displays ###’s.
You could widen the column to make the date and time show, but sometimes this is not convenient: the column may already be exactly the width you want to accommodate all entries in cells further below. Maybe you don’t want to push any other columns any further to the right, because you won’t be able to see the column contents on one screen, or because it forces you to change the print settings.
The solution is to use the TEXT function to convert the value returned by NOW to text: text (as opposed to a value) stretches into the next column rather than returning ###’s. The TEXT function has two arguments: 1. the value to convert to text; 2. what format to show it in. Use custom number codes in double quote marks to specify the format. For example =TEXT(NOW(),”ddd dd/mm/yy hh:mm”) will return date and time using the format FRI 09/04/04 11:24.
View all Access hints and tips |
|