Power BI How-To Guide for Beginners (From Install to Dashboard)

Power BI How-To Guide for Beginners (From Install to Your First Dashboard)

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.

What Power BI actually is — for someone who has only ever used Excel

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.

Installing Power BI Desktop and signing in

Power BI Desktop runs on 64-bit Windows 10 or later. It does not run natively on Mac. You have two install routes.

  • Microsoft Store (recommended). Open the Store app, search “Power BI Desktop”, click Install. Monthly updates arrive on their own. No admin rights needed, which matters on a company-issued laptop.
  • Microsoft Download Center. Visit the official Power BI Desktop product page on microsoft.com and click “Download”. You get an .exe installer. You must repeat the download each month to stay current.

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.

The Power BI workflow in 30 seconds: load → model → visualise → publish

Every Power BI project, no matter how complex, follows the same five-step loop:

  1. Load. Click Home > Get Data and pick the source — Excel, CSV, SQL Server, SharePoint, a folder of files, almost anything.
  2. Transform. Open the Power Query Editor to clean the data: remove blank rows, fix data types, merge tables, add calculated columns.
  3. Model. In the model view, draw relationships between tables (Sales to Products, Orders to Customers). Power BI usually guesses. You tidy up.
  4. Visualise. On the report canvas, drag fields onto charts, KPIs, slicers and tables.
  5. Publish. Click Publish, pick a workspace, and the report is live in the Power BI Service for the people you chose to share it with.

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.

A whiteboard sketch of a five-step Power BI data flow used in a planning meeting

Loading your first dataset (Excel, CSV, SQL)

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:

  1. Click Get Data > Excel workbook (or CSV, or whichever).
  2. Browse to the file and click Open.
  3. The Navigator pane appears. Tick the sheet or table you want.
  4. You now have two buttons: Load brings the data straight into your model. Transform Data opens the Power Query Editor first.

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.

Opening Power Query Editor and cleaning data

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:

  • Ribbon at the top, with every transformation grouped by tab (Home, Transform, Add Column, View).
  • Queries pane on the left, listing each table you have loaded.
  • Data preview in the middle, showing the first 1,000 rows of the selected query.
  • Applied Steps on the right, the recipe of every change you have made. You can click any step to see the data at that point, delete a step, or insert a new one between two existing steps.

The five transformations a beginner reaches for every day:

  1. Remove columns you do not need. Right-click the column header, choose Remove. Less data is faster.
  2. Filter rows. Click the small arrow on a column header and untick the values you do not want. Same idea as an Excel AutoFilter.
  3. Change data type. Click the data type icon to the left of the column name and pick Whole Number, Decimal, Date or Text. Date columns are the usual offenders.
  4. Replace values. Find a typo across thousands of rows and fix it in one step.
  5. Merge queries. Combine two tables on a matching column — Power BI’s version of VLOOKUP.

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.

Creating your first measure (and why you need a measures table)

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.

  1. In the Fields pane, right-click your table (say, financials) and choose New measure.
  2. In the formula bar, type: Profit Margin = DIVIDE( SUM(financials[Profit]), SUM(financials[Sales]) )
  3. Press enter.

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.

Two colleagues working through numbers on a desk, the kind of detail a Power BI measures table tidies up

  1. On the Home ribbon, click Enter Data.
  2. Leave the single column with one empty row. Name the table Measures. Click Load.
  3. In the Fields pane, your new Measures table appears with a column called Column1. Right-click it. Choose Hide in report view.
  4. Drag every measure you have ever created into this Measures table by editing its Home table in the Modeling ribbon.

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”.

Editing data in a table — and the trap of doing it in the view

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:

  • Fix it at the source. Edit the Excel file or the database row, save, then refresh the model in Power BI (Home > Refresh).
  • Fix it in Power Query. Open Transform Data and add a Replace Values step that does the same edit every time. This is the right answer when the same fix needs to repeat with every refresh.
  • Use Enter Data for tiny manual tables. For a small lookup of region codes or department names that does not exist in the source, click Enter Data on the Home ribbon and type the small table directly. Fine for ten rows. Not fine for ten thousand.

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.

Exporting from Power BI: to Excel, to PDF, to PowerPoint

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.

Removing the date hierarchy (the one setting every beginner hits)

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?

  1. Click File > Options and settings > Options.
  2. In the left pane, open Current File > Data Load.
  3. Untick Auto date/time under Time intelligence.
  4. Click OK. Save the file.

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.

How long does it actually take to learn Power BI?

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.

Adult learners working on laptops in a Singapore training room studying Power BI

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.

Where to learn more: Microsoft Learn, blogs, courses (honest comparison)

There are far more Power BI resources than any beginner needs. Four sources cover almost everything.

Open books and a laptop on a desk — a mixed Power BI learning library for beginners

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.

Picture of Vinai Prakash

Vinai Prakash

Vinai Prakash is the Founder and Chief Trainer at Intellisoft Training, a leading SSG-Approved Training Provider and Pearson VUE Authorized Testing Centre in Singapore. With over 25 years of hands-on industry experience in Python, Data Analysis, Business Intelligence, Excel, Power BI, and Project Management, Vinai is passionate about helping individuals future-proof their careers by making complex concepts simple and actionable. Under his leadership, Intellisoft Training offers WSQ-Funded Courses in Python, Data Analytics, Microsoft Office, Power Platform, and more, all taught by seasoned industry experts.

Leave a Reply

Sign up for our Newsletter

We’ll send you some tips &  tutorials, plus Training News & Updates to your email periodically.

Want to Improve Your
Communication, Presentation 
& Negotiation Skills
Quickly?

Join our Master Trainer for Tips & Tricks on
Effective Communication, Negotiation &
Creating WOW Presentations in a
Free 1 Hour Webinar

Start Saving Today

Get the 8 Tips to Start Saving on Your Website Design
PDF Guide emailed to you now.

Save Money on Website Design Guide