Power BI is Microsoft’s free reporting tool, and Power BI how to start is one question on every beginner’s mind. The workflow has five steps: install Power BI Desktop, load your data, clean it in Power Query, build your visuals, and publish the report to the Power BI Service. A beginner who is comfortable in Excel can build a working dashboard in one afternoon. Reaching the level where you feel at home in the tool takes about 60 hours of practice. That’s it. The rest of this article is detail.
In my 24 years of training in Singapore, I have watched thousands of working professionals — accountants, HR managers, sales heads, engineers — open Power BI for the first time, panic for ten minutes, and then quietly fall in love with it. This guide walks you through the same path I take learners through in our hands-on Power BI classroom course. What Power BI actually is. How to install it. The 30-second mental model. Loading your first dataset. Power Query. Your first measure. The trap of trying to edit a table in the view. Exporting back to Excel. The one setting every beginner hits (the auto date hierarchy). An honest answer to how long it takes to learn. And the best places to go next.
Power BI sits in the family of business intelligence tools. That phrase sounds intimidating. In plain English, Power BI is a piece of Microsoft software that connects to data, turns the data into interactive charts and tables, and publishes them as a “report” that other people can open in a web browser. It lives in the same family as Excel and Power Query.
If you have built a pivot table in Excel, you have already built half a Power BI report. The grouping logic, the totals, the filters — all the same ideas you used in Excel. Power BI adds three things on top. A faster engine that handles tens of millions of rows without freezing your laptop. A real visualisation library (slicers, KPIs, maps, drill-throughs, conditional formatting). A publishing model where one click puts your report online for the whole team to see.
Think of Power BI as a kitchen with three rooms. The first room is where you cook — that’s Power BI Desktop. The second room is the dining hall where the food is served — that’s the Power BI Service. The third room is the takeaway window — that’s the Power BI mobile app. You always cook in Desktop. You always serve through the Service. Colleagues taste the result on their phones or laptops. That is the entire shape of the product.
Power BI Desktop runs on 64-bit Windows 10 or later. It does not run natively on Mac. You have two install routes.
Once installed, launch the app from the Start menu. The first screen asks you to sign in. A free Microsoft account is enough to start building reports locally. If you want to publish and share, you will need a work or school account with a Power BI licence attached — Pro, Premium per User, or part of a Microsoft 365 E5 plan. For learning, sign in with whatever account you already have. You can switch later.
On a Mac? Three options. Run Windows in a virtual machine (Parallels is the smoothest). Use a separate Windows PC at the office. Or work in the browser-only Power BI Service for viewing reports built elsewhere. None are perfect. Most Mac-using learners I’ve taught in Singapore eventually borrow a Windows laptop from the office or buy a cheap secondhand one.
Every Power BI project, no matter how complex, follows the same five-step loop:
Everything in this guide fits inside one of those five steps. When something goes wrong, the first question to ask yourself is: which step am I in? In my classes, most beginner problems sit in steps 2 and 3 — bad data types or missing relationships. Once you know which room of the kitchen the smoke is coming from, the fix is quick.
Open Power BI Desktop. On the Home ribbon, click Get Data. A long list of source types appears: Excel workbook, Text/CSV, SQL Server, SharePoint Online List, Web, JSON, OData, and dozens more.
For your first project, an Excel file or a CSV is the easiest place to start. Microsoft publishes a free Financial Sample dataset that most beginner tutorials use. It is one Excel file with about 700 rows. That’s enough to practise every concept in this guide.
The steps are the same for any source:
The instinct is to click Load. The better habit is to click Transform Data. Almost every real dataset has something that needs fixing — a date column read as text, a stray total row at the bottom, a misspelt header. Looking before loading saves you re-work later. I’ve lost count of how many times an Excel column called Amount turned out to be stored as text because of one cell with a stray space.
For a SQL Server connection, you supply the server name, database name and credentials. The rest is identical: Navigator, choose tables, Load or Transform.
Power Query Editor is a separate window. It opens when you click Transform Data at import, or when you click Home > Transform data > Transform data later. It is one of the most useful parts of Power BI, and the good news is that it is shared with Excel — the skills you build here transfer in both directions.
The editor has four areas:
The five transformations a beginner reaches for every day:
When you are done, click Close & Apply on the Home ribbon. The changes are saved and the data refreshes back into the report view. The Applied Steps are remembered, so the same cleaning runs again every time the data refreshes. That is the magic of Power Query — you clean once, you benefit every refresh.
A measure is a calculation that responds to the filters on the report. Your sales total, a profit margin percentage, a year-on-year change — these are all measures. They are written in DAX, the Power BI formula language. DAX looks a lot like Excel formulas, but with a model-aware twist that takes a while to feel natural.
Your first measure: profit margin.
Profit Margin = DIVIDE( SUM(financials[Profit]), SUM(financials[Sales]) )You now have a field called Profit Margin that you can drag onto any visual. DIVIDE is used in place of the / operator because DIVIDE handles divide-by-zero cleanly — it returns blank instead of an error. A small habit. It saves you from “error” messages staring back at your boss in a board meeting. For more on this pattern, see our companion piece on Power BI Quick Measures explained.
Now the part most tutorials skip: a measures table. After three months of building reports you will have 40 measures spread across five data tables, and you will not be able to find any of them. Managers can be quite demanding — they want a number changed in the next ten minutes, and you do not want to be hunting through tables for the right measure. The trick is to create an empty table whose only job is to hold measures.
The Measures table now floats at the top of the Fields pane (Power BI sorts tables-with-no-columns first). Every measure is in one place. This single habit saves hours later, and it is the answer to “power bi how to create a measures table”.
This is the most common beginner confusion I see in class. You see your data in the Data view (the table icon on the left). You spot a typo. You try to click into the cell and edit it. Nothing happens. You click again. Still nothing.
That is by design. Power BI is read-only at the report layer. The Data view shows you what the model has loaded, but you cannot edit it there. You have three real options to change data:
The reflex to fix a number by clicking on it in the report view is the single biggest source of “why isn’t Power BI working” questions from beginners. Power BI is not Excel. The fix happens upstream of the visuals — at the source, or in Power Query.
Power BI has three layers of export, and which one you use depends on what you want.
Visual-level export. Hover over any chart, click the three dots, choose Export data. You get a CSV (or .xlsx if you tick “Underlying data” and your admin allows it). Useful when a colleague says “can you send me the table behind this chart”.
Report-level export. From the Power BI Service, open a report and click File > Export to PDF or Export to PowerPoint. PDF gives you a snapshot of every page. PowerPoint creates one slide per page with each visual as an image. Good for board packs and emailed summaries. The PowerPoint export is detailed enough to deserve its own walk-through — see how to export Power BI to PowerPoint for the full process.
Analyze in Excel. In the Power BI Service, open a dataset and click More options > Analyze in Excel. Power BI generates an Excel file with a live connection back to the published dataset. PivotTables in that file refresh on demand against the Power BI model. This is the answer for the power user who has graduated but still prefers Excel for the last-mile slicing.
Most of the time, beginners want the first option (CSV of one chart) or the second (PDF of the whole report). The third is for the analyst who is one foot into intermediate territory.
Every time you load a date column, Power BI quietly creates a hidden table behind the scenes — a date hierarchy with Year, Quarter, Month, Day. This sounds helpful. In practice, it adds a hidden table for every single date column in the model, bloats the file size, and confuses date filters when you start writing DAX.
The fix is one checkbox. How good is that?
If you have already loaded several date columns, the hidden tables drop away and the model shrinks, sometimes dramatically. From then on, you build your own date table — a single, clean date table with Year, Month, Quarter columns is the professional standard — and use it for all time-based filters.
This is the answer to “power bi how to remove date hierarchy”. It is also the first sign of a beginner crossing into intermediate Power BI: they have stopped trusting the auto features and started building the model the way they want it.
This is the question every beginner asks, and most articles give a non-answer. Here is the honest one, based on watching thousands of professionals come through our classrooms over the past two decades.
The first 10 hours feel the hardest. The screen looks unfamiliar. The panes do not behave like Excel. Clicking the wrong thing closes a chart you spent 20 minutes building. Stick with it. This phase ends around the time you build your second standalone report from scratch.
Around 60 hours of focused practice gets you to “useful”. That is roughly six to eight evenings of work, or a one-week intensive course with homework. At this stage you can take an Excel file, clean it in Power Query, build five visuals on one page, write a basic DAX measure, and publish to the Service. Useful means an employer can give you a CSV and a question and you will produce a working dashboard.
Six months of regular use gets you to “confident”. Confident means you can write a CALCULATE with multiple filters, handle three or four related tables, design a multi-page report with bookmarks and drill-throughs, and recognise when a model is going to be slow before you build it.
One to two years gets you to “advanced”. Row-level security. Large data models. Custom DAX patterns. Performance tuning. The trickier modelling decisions — star schema discipline, when to use disconnected tables. At this point you can sit in a meeting and design a model out loud on a whiteboard.
The big jump is not from beginner to intermediate. It is from “can build a report” to “can model a problem”. DAX is the wall. Everyone hits it. The way through is to write one measure a day for two months, look up what you don’t understand, and accept that the first 30 measures will not make sense. After that, something clicks. I have seen this pattern in 48,000+ working professionals trained, across SME, banking, manufacturing, call centres and the public sector. The shape of the curve is the same every time.
Course CTA: Analyze and Visualise with Power BI — our hands-on, WSQ-funded Power BI classroom course, covering install, Power Query, DAX measures and dashboards for working professionals. SkillsFuture credit eligible.
There are far more Power BI resources than any beginner needs. Four sources cover almost everything.
Microsoft Learn. The official training path at learn.microsoft.com is free, well structured, and tied to the PL-300 certification. The Microsoft Learn Power BI training track (the long-form path) is dry but accurate, and you can trust every line. Good for the canonical “how does this feature actually work” question. The shorter Microsoft Learn Power BI tutorial on the same site is a friendlier first pass — start there if the full learning path feels overwhelming.
The official Power BI blog. Microsoft’s own Power BI blog at powerbi.microsoft.com/blog is the source of truth for new features, monthly updates and roadmap announcements. Not a learning resource. A “what changed this month” feed.
Independent blogs. The Power BI community is unusually strong. SQLBI (Marco Russo and Alberto Ferrari) is the highest authority on DAX. Guy in a Cube is excellent for short video walkthroughs of new features. RADACAD covers modelling and Power Query in depth. Enterprise DNA is paid but well organised. A search for “power bi blog” will surface most of them. Bookmark two, not ten.
PDF resources and books. Several free learning Power BI PDF downloads exist — Microsoft publishes a Power BI Step by Step PDF, and Power BI Cookbook (Brett Powell) is the most cited paid book. Useful as offline reference. Less useful as a primary learning path.
A structured course (instructor-led). Self-study works, but most learners speed up the first 60 hours by joining a structured course where someone explains why the auto date hierarchy is bad, what a star schema is, and how to write DIVIDE correctly. Intellisoft’s Data Analytics with Excel and Power BI programme is one such WSQ-funded option for learners in Singapore, with classroom and live online formats.
For working professionals who already use Excel daily and want to layer reporting depth on top before stepping into Power BI proper, our Advanced Data Analytics & Visualisation with Excel course is a useful bridge. Both routes lead naturally toward the PL-300 certification.
The honest order: do the first Microsoft Learn module to see the shape of the tool, then either take a structured course or build three real projects of your own. Reading without building does not teach Power BI. You have to click around. I hope you’ll like this guide — do try it out, open Power BI Desktop this weekend with a CSV from your work, and see if you can get to your first visual in 30 minutes. That is the right next step.
How to Use PowerPoint: A Complete Beginner's Guide (2026) To use PowerPoint, open the app,…
How to Write a Formal Email (Structure + 5 Worked Templates) To write a formal…
How to Write a Professional Email (Structure, Examples, 5 Use-Cases) To write a professional email,…
By Vinai Prakash · 12 min read · 10 June 2026 How to Use SUMIF…
New to Microsoft 365 Copilot? Our hands-on Microsoft 365 Copilot classroom training covers everything in…
How to Use Copilot in Word: A Step-by-Step Guide (with Real Prompts) To use Copilot…