An Introduction to Reports in Microsoft Access

  Рет қаралды 23,056

Sean MacKenzie Data Engineering

Sean MacKenzie Data Engineering

Күн бұрын

Пікірлер: 35
@aliallen7777
@aliallen7777 6 ай бұрын
I have used Access for many years occasionally on large projects, but have not become a confident pro in many aspects of Reports. I am overjoyed to find your videos on many topics. I appreciate your style and look forward to learning from you. Thank you for your time efficient, no drama style. (I hope your cat is doing well but you didn't mention it!)
@seanmackenziedataengineering
@seanmackenziedataengineering 6 ай бұрын
Thanks for sharing - and happy to have you onboard. Cheers
@LindaKeefe
@LindaKeefe Жыл бұрын
One of the best explanations of Access reports I've seen. Thank you! Question: How can you use a "multivalued Field" in access and have the choices show up in a report or a query? I'm trying to help a friend in the library with her database of stories, songs and themes for little kids.
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Thanks for the feedback! Ok, good question. The short answer is: don't use multivalued fields if you can avoid it. A much better approach, and one that works well with Reports is to make yourself a separate table. Say you have a table of books that has an Autonumber key (1,2,3 etc) called BookID. One row per book. Also, you have a table of authors also with an Autonumber key called AuthorID. When you want to add the authors to the book, just have a third table that has its own Autonumber key BookAuthorID, the AuthorID, and the BookID as columns. Then you can have all the authors assigned to the right books and vice versa, with no duplication. You can use this approach for anything that you might use a multivalue field for and it will work nicely on reports and other queries. Whenever you want to see everything together, just drag all three tables into the query view then use that query for your Report. Give it a try!
@johnstuder847
@johnstuder847 Ай бұрын
Thank you for your videos! Might want to mention that Access reports is much easier to use than Excel reports, at least for ‘quick and dirty’? Does Access have the ability to have interactive (such as outline / detail rollup) reports, or does the query have to be done prior to the running of the report? Thank you !
@seanmackenziedataengineering
@seanmackenziedataengineering Ай бұрын
Most welcome! Yes, Access reports are awesome. This is in part due to their powerful pagination, grouping, and printer-friendly features that are hard to find in other products. Reports also have some interactivity that you can experiment with, that you see when you open a report in Report view, not "Print Preview" mode. Lots of features become available when you open in this mode - especially when you start using some Modern Charts features as well. Very powerful!
@MoBakr2
@MoBakr2 Жыл бұрын
Thank you, now I've got a solid general idea about MS Access reports. One question please, how can I make a query field clickable as hyperlink to open tge request details form
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Glad you enjoyed it! For your query, you probably want to make a form, then add a click or double-click event to your field. If you want to open and view in the same manner like your query, choose the datasheet view or continuous forms. It is a form but it looks like your query. Then you can click on a field and have other forms open etc.
@vwv5555
@vwv5555 Жыл бұрын
Thanks for the great effort! I have a question if you don't mind. Is it possible to print a report with a photo in the header section?
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Yes you can - you can add all kinds of graphics to the reports, including photos. You may need to test out different settings on the image control, ie. sunken, flat, border/no border etc. These are all in the properties.
@satyabanukil779
@satyabanukil779 11 ай бұрын
. I have a problem. I have two separate columns in a single table query. One for Group A and another for Group B. As I need an overall ranking, need to merge these two columns to one in order sort them from largest to smallest. Shall be grateful if any assistance is provided. Regards.
@seanmackenziedataengineering
@seanmackenziedataengineering 11 ай бұрын
Just make a query column MyColumn: [Group A] & ", " & [Group B] Then choose ascending for that column. You could also use some other delimiter instead of ", "; maybe " - " or whatever you like.
@satyabanukil779
@satyabanukil779 11 ай бұрын
@@seanmackenziedataengineering Thnx a lot Sir. Regards
@satyabanukil779
@satyabanukil779 11 ай бұрын
@@seanmackenziedataengineering Thnx Sir. But it puts the data from both the column to a new column and separates them with a comma. Not fresh row for the new record. If there is not another row, I cannot sort. Kindly see if there is a solution to this. Regards
@seanmackenziedataengineering
@seanmackenziedataengineering 11 ай бұрын
@@satyabanukil779 Ahh I see now, I misunderstood. What you need is a Union query: Select ID, Field1 As MyField From tblMyTable Union Select ID, Field2 As MyField From tblMyTable Order By MyField
@satyabanukil779
@satyabanukil779 11 ай бұрын
@@seanmackenziedataengineering @TLDW_Tutorials Thank you Sir. I tried with Union Queries. But it is returning exactly the the field name which I wrote not the data under it. For example, My code is " SELECT Query1.T1TT AS TeamTotal, 'P1' AS TeamId, "TEAM1" AS Team FROM Query1 GROUP BY Query1.T1TT UNION ALL SELECT Query2.T2TT AS TeamTotal, 'P2' AS TeamId,"TEAM2" AS Team FROM Query2 GROUP BY Query2.T2TT" and so on. But when I execute the code the dataset shows just "TEAM1", "TEAM2" and not the data under these column. So I may be wrong with my syntax since it is a text field. If you get time, kindly help. Regards.
@ammarsadiq
@ammarsadiq Жыл бұрын
I'm looking for help to create a template. I have 5 different Word files that I'd like to be accessible through buttons in an Access database. The buttons should open specific pages in the Word files for editing and printing. Additionally, I'd like to keep a record of all my prints in a database. Is there anyone who can assist me with this?"
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
That's a pretty neat project! You can certainly do some interop from your database, using the Word libraries in VBA. it would be similar to my video where I opened another database from the current one, then did some things there before closing and resuming: kzbin.info/www/bejne/npmzo3WDgbOcetU except, you will reference the Word libraries in order to get that functionality. Good idea for a video!
@containerhobbyshop9735
@containerhobbyshop9735 Жыл бұрын
Your tutorials are pro, thanks.
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Glad you like them! cheers
@interestingamerican3100
@interestingamerican3100 Жыл бұрын
Not going to lie, I have largely ignored the reports feature of MS Access. I want to learn modern applications for the reports to support visuals in the forms. Appreciate your video!
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Fair enough - I think many people want to be able to use powerful online visuals like you can find in Power BI. Access does have Modern Charts which are neat and can be used for some great visuals too but they don't compare to Power BI; I'll cover these in a future episode. IMHO where reports shine is in day-to-day operations, printed materials for meetings, etc. Without some styling they definitely look old these days! Thanks for the feedback!
@hardcorehappy1
@hardcorehappy1 Жыл бұрын
Very helpful!
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Glad you think so!
@emanaseel-f3r
@emanaseel-f3r 11 ай бұрын
thank you youre the best
@seanmackenziedataengineering
@seanmackenziedataengineering 11 ай бұрын
Thx!
@cmlibin
@cmlibin Жыл бұрын
My report which ideally should be only one page is repeating multiple times, it's a summary report. why would that be
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
You may have your fields in the Detail section, but perhaps those need to be in a group section, with the Detail section collapsed (so you only get one page), or you can create a summary query first then create a report on that (in that case, put the fields in the Detail).
@gerfer6261
@gerfer6261 Жыл бұрын
Good feature, but power Bi is leading the I think But respect the elders
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
I hear you! Power BI is pretty awesome and I use it all the time. Did you see how it shot out in front of everyone on the Gartner quadrant? MS must be doing something right.
@gerfer6261
@gerfer6261 Жыл бұрын
Lead me to somewhere I can hashing passwords in access please 🤭 In audit process they picked on me storing plain text passwords in a table
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
@@gerfer6261 Some interesting implementations here: stackoverflow.com/questions/125785/password-hash-function-for-excel-vba One accesses .Net libraries through CreateObject which simplifies things. You can start looking there and see what works for you.
How to Do Grouping and Sorting of Report Data in Microsoft Access
17:36
Sean MacKenzie Data Engineering
Рет қаралды 7 М.
How to use Microsoft Access - Beginner Tutorial
31:07
Kevin Stratvert
Рет қаралды 3,4 МЛН
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН
-5+3은 뭔가요? 📚 #shorts
0:19
5 분 Tricks
Рет қаралды 13 МЛН
How to Filter a Report Based on the Filter Set in a Form in Microsoft Access
18:04
Ads3158
15:31
Advanced Data Business Systems — Access ADS
Рет қаралды 22
Getting Started with MS Access Visual Basic for Applications - VBA Code-Behind and Modules
32:06
Is Microsoft Access Still Viable in 2024?
21:19
Advantage Applications
Рет қаралды 47 М.
How to Make a Macro in Microsoft Access
9:15
MyExcelOnline.com
Рет қаралды 20 М.
How to Add Simple User-Level Security to Microsoft Access Databases
26:44
Computer Learning Zone
Рет қаралды 44 М.
How to Use DLookup in Microsoft Access
15:48
Sean MacKenzie Data Engineering
Рет қаралды 21 М.
Create a dynamic access report 10 in 1
13:49
askfarouk
Рет қаралды 25 М.
Microsoft Access 2016 Tutorial: Creating and Modifying Reports
17:22
Kaceli TechTraining
Рет қаралды 75 М.