Session 2 Focus

From basic calculations to cleaner data

Session 2 introduces beginner DAX measures, Power Query transformations, and practical analysis features used by business teams in day-to-day reporting.

Expectation reminder: this course is an introduction to get learners started, not advanced mastery. For comprehensive learning, the DataCamp Power BI Fundamentals Track (17 hours) provides complete coverage beyond these two sessions.

Part 1: Basic DAX Measures

Use this section as a live demo. Each formula includes a copy button so learners can paste directly into Power BI.

Create a calculated column in order-details to get line totals using the related products table:

LineTotal =
RELATED(products[unitPrice]) * order-details[quantity] * (1 - order-details[discount])

Talking point: use measures for dynamic report totals and calculated columns for row-level logic.

Part 2: Power Query Transforms (Beginner)

Open dirty CSV files via Transform Data and run these guided clean-up blocks.

  1. Remove top rows (title rows + blank rows).
  2. Use first row as headers.
  3. Set data types: Salary = Whole Number, StartDate = Date.
  4. Text functions: Capitalize each word, Trim, Replace double spaces.
  5. Replace invalid values: N/A and PENDING to null.
  • Always verify data type icons in each column.
  • Numbers stored as text cannot aggregate correctly in visuals.
  • Dates must be proper Date type for slicing and trends.

Part 3: Analysis Features

  • Create Region + Category slicers and demonstrate combined filtering.
  • Use Edit Interactions to control filter/highlight behavior.
  • Explain why slicers are a must-have for business stakeholders.

Further Learning & Next Steps

Final reminder: this bootcamp is only an introduction. It gives learners a practical start but they will need deeper study to master DAX and Power Query.

Learning PathGoalSuggested Resource
DAX MasteryContext transition, time intelligence, optimizationSQLBI learning tracks + DAX Guide practice
Power Query MasteryAdvanced shaping, query folding, M functionsMicrosoft Learn Power Query path + hands-on projects
Power BI DeliveryPublishing, sharing, governance, refreshMicrosoft Learn service administration modules
Structured LearningComplete Power BI fundamentals (17 hours)DataCamp Power BI Fundamentals Track
Practical PracticePortfolio-quality dashboards and storytellingRepeat this course workflow on new datasets