You don't need to master M immediately. Start by understanding the transformations available through the interface.
๐น 13. Merge Queries
Merge Queries combines related tables using a common column.
For example:
Customers
Customer_ID | Customer_Name
101 | John
102 | Sarah
Orders
Order_ID | Customer_ID | Sales
1 | 101 | 5000
2 | 102 | 7000
You can merge them using:
Customer_ID
This is similar to a SQL "JOIN".
๐น 14. Append Queries
Append combines tables by adding rows.
For example:
January Sales
โ
February Sales
โ
March Sales
becomes one table containing all three months.
Remember:
Merge โ Combine columns
Append โ Combine rows
๐น 15. Applied Steps
Power Query records every transformation you perform.
For example:
Source
โ
Changed Type
โ
Removed Columns
โ
Filtered Rows
โ
Trimmed Text
โ
Removed Duplicates
This makes the cleaning process repeatable.
When the source data is refreshed, Power Query can apply the same steps again.
๐น 16. Query Folding
Query Folding is an important performance concept.
When possible, Power Query pushes transformations back to the source system.
For example:
Power BI
โ
Filter 2026 Data
โ
Database performs filtering
โ
Power BI receives required data
This can reduce the amount of data transferred and improve refresh performance.
Query folding depends on the data source and the transformations being used.
๐น 17. Power Query vs SQL vs DAX
Remember this simple difference:
SQL
โ Retrieve and analyze data from databases
Power Query
โ Clean and transform data
DAX
โ Create calculations and analyze data inside the Power BI model
A typical workflow is:
SQL
โ
Get Data
Power Query
โ
Clean & Transform
Data Model
โ
Create Relationships
DAX
โ
Create Measures
Visuals
โ
Build Report
๐ฏ Interview Question
What is the difference between Merge and Append in Power Query?
Merge combines related tables using matching columns.
Append stacks tables with similar structures by adding rows.
Merge โ More columns
Append โ More rows
๐ก Key Lesson
Power Query prepares your data so that your Power BI model and reports are built on clean, reliable data.
๐ Double Tap โค๏ธ For Part-24
๐น 13. Merge Queries
Merge Queries combines related tables using a common column.
For example:
Customers
Customer_ID | Customer_Name
101 | John
102 | Sarah
Orders
Order_ID | Customer_ID | Sales
1 | 101 | 5000
2 | 102 | 7000
You can merge them using:
Customer_ID
This is similar to a SQL "JOIN".
๐น 14. Append Queries
Append combines tables by adding rows.
For example:
January Sales
โ
February Sales
โ
March Sales
becomes one table containing all three months.
Remember:
Merge โ Combine columns
Append โ Combine rows
๐น 15. Applied Steps
Power Query records every transformation you perform.
For example:
Source
โ
Changed Type
โ
Removed Columns
โ
Filtered Rows
โ
Trimmed Text
โ
Removed Duplicates
This makes the cleaning process repeatable.
When the source data is refreshed, Power Query can apply the same steps again.
๐น 16. Query Folding
Query Folding is an important performance concept.
When possible, Power Query pushes transformations back to the source system.
For example:
Power BI
โ
Filter 2026 Data
โ
Database performs filtering
โ
Power BI receives required data
This can reduce the amount of data transferred and improve refresh performance.
Query folding depends on the data source and the transformations being used.
๐น 17. Power Query vs SQL vs DAX
Remember this simple difference:
SQL
โ Retrieve and analyze data from databases
Power Query
โ Clean and transform data
DAX
โ Create calculations and analyze data inside the Power BI model
A typical workflow is:
SQL
โ
Get Data
Power Query
โ
Clean & Transform
Data Model
โ
Create Relationships
DAX
โ
Create Measures
Visuals
โ
Build Report
๐ฏ Interview Question
What is the difference between Merge and Append in Power Query?
Merge combines related tables using matching columns.
Append stacks tables with similar structures by adding rows.
Merge โ More columns
Append โ More rows
๐ก Key Lesson
Power Query prepares your data so that your Power BI model and reports are built on clean, reliable data.
๐ Double Tap โค๏ธ For Part-24
โค6
๐ Data Analyst Roadmap โ Part 24
๐ Power BI Level 3 โ Data Modeling & Relationships
Once your data is clean, the next step is to build a proper data model.
This is where you decide how your tables connect and how Power BI should understand your data.
๐น 1. What Is a Data Model?
A data model is the structure that connects your tables.
For example, you might have:
Sales
Order_ID
Customer_ID
Product_ID
Date
Sales
Quantity
Customers
Customer_ID
Customer_Name
Region
Products
Product_ID
Product_Name
Category
Date
Date
Month
Quarter
Year
These tables are connected through relationships.
๐น 2. Fact Table
A fact table contains business transactions and numerical values.
Example:
Sales
It may contain:
โข Sales Amount
โข Quantity
โข Cost
โข Profit
โข Order ID
Think:
Fact = What happened?
๐น 3. Dimension Table
Dimension tables describe the facts.
Examples:
Customer โ Who?
Product โ What?
Date โ When?
Region โ Where?
For example:
Customer
Customer_ID
Customer_Name
Region
๐น 4. Star Schema
A common Power BI model looks like this:
The fact table is in the middle and dimension tables surround it.
This is called a Star Schema.
๐น 5. Primary Key
A primary key uniquely identifies a record.
For example:
Customer_ID
101
102
103
Each ID identifies one customer.
๐น 6. Foreign Key
The Sales table can contain the same customer multiple times:
Customer_ID
101
101
102
101
103
Here, "Customer_ID" is used to connect Sales with Customers.
So:
Customers โ Primary Key
Sales โ Foreign Key
๐น 7. One-to-Many Relationship
The most common relationship in Power BI is:
One Customer โ Many Sales
This is called a:
1 : * relationship
๐น 8. Why Relationships Matter
Suppose you select:
Region = West
Power BI needs to know which sales belong to customers from the West region.
The relationship allows the filter to travel from:
Customers
โ
Sales
Without a proper relationship, your visuals may show incorrect results.
๐น 9. Cardinality
Cardinality describes how records relate between two tables.
Common types:
1 : * โ One-to-Many
1 : 1 โ One-to-One
โข : * โ Many-to-Many
For most Power BI analytical models, 1-to-many relationships are the most common.
๐น 10. Many-to-Many Relationships
Many-to-many relationships can make models more complicated.
For example:
Customers โ Products
A customer can buy many products.
A product can be purchased by many customers.
Instead of directly connecting them in some cases, a bridge table can be used.
Customers
โ
Bridge Table
โ
Products
๐น 11. Date Table
A proper Date table is extremely important for Power BI.
It can contain:
Date
Day
Month
Month Number
Quarter
Year
Year-Month
For example:
๐ Power BI Level 3 โ Data Modeling & Relationships
Once your data is clean, the next step is to build a proper data model.
This is where you decide how your tables connect and how Power BI should understand your data.
๐น 1. What Is a Data Model?
A data model is the structure that connects your tables.
For example, you might have:
Sales
Order_ID
Customer_ID
Product_ID
Date
Sales
Quantity
Customers
Customer_ID
Customer_Name
Region
Products
Product_ID
Product_Name
Category
Date
Date
Month
Quarter
Year
These tables are connected through relationships.
๐น 2. Fact Table
A fact table contains business transactions and numerical values.
Example:
Sales
It may contain:
โข Sales Amount
โข Quantity
โข Cost
โข Profit
โข Order ID
Think:
Fact = What happened?
๐น 3. Dimension Table
Dimension tables describe the facts.
Examples:
Customer โ Who?
Product โ What?
Date โ When?
Region โ Where?
For example:
Customer
Customer_ID
Customer_Name
Region
๐น 4. Star Schema
A common Power BI model looks like this:
Customers
Products โโโโ Sales โโโโ Date
Region
The fact table is in the middle and dimension tables surround it.
This is called a Star Schema.
๐น 5. Primary Key
A primary key uniquely identifies a record.
For example:
Customer_ID
101
102
103
Each ID identifies one customer.
๐น 6. Foreign Key
The Sales table can contain the same customer multiple times:
Customer_ID
101
101
102
101
103
Here, "Customer_ID" is used to connect Sales with Customers.
So:
Customers โ Primary Key
Sales โ Foreign Key
๐น 7. One-to-Many Relationship
The most common relationship in Power BI is:
One Customer โ Many Sales
Customers Sales
1 *
| |
Customer_ID โโโโโโโโโ Customer_ID
This is called a:
1 : * relationship
๐น 8. Why Relationships Matter
Suppose you select:
Region = West
Power BI needs to know which sales belong to customers from the West region.
The relationship allows the filter to travel from:
Customers
โ
Sales
Without a proper relationship, your visuals may show incorrect results.
๐น 9. Cardinality
Cardinality describes how records relate between two tables.
Common types:
1 : * โ One-to-Many
1 : 1 โ One-to-One
โข : * โ Many-to-Many
For most Power BI analytical models, 1-to-many relationships are the most common.
๐น 10. Many-to-Many Relationships
Many-to-many relationships can make models more complicated.
For example:
Customers โ Products
A customer can buy many products.
A product can be purchased by many customers.
Instead of directly connecting them in some cases, a bridge table can be used.
Customers
โ
Bridge Table
โ
Products
๐น 11. Date Table
A proper Date table is extremely important for Power BI.
It can contain:
Date
Day
Month
Month Number
Quarter
Year
Year-Month
For example:
Date | Month | Quarter | Year
01-Jan-26 | January | Q1 | 2026
02-Jan-26 | January | Q1 | 2026
โค4
This makes time-based analysis much easier.
๐น 12. Why Month Number Is Important
If you display:
January
February
March
April
Power BI may sort month names alphabetically depending on the setup.
You need a:
Month Number
January โ 1
February โ 2
March โ 3
Then sort Month by Month Number.
๐น 13. Understand the Grain
Before creating relationships, ask:
"What does one row represent?"
For example:
Sales table
โ One row = One order
or:
Sales table
โ One row = One order item
These are different grains.
If you don't understand the grain, you can accidentally double-count sales.
๐น 14. Example of a Grain Problem
Suppose one order contains:
Order 1001
Laptop โ โน60,000
Mouse โ โน2,000
The order-item table has two rows.
If you join this with another table incorrectly, the โน62,000 order value could potentially be repeated.
So before creating relationships or calculations:
Always understand the grain of your tables.
๐น 15. Active and Inactive Relationships
Sometimes two tables can have more than one possible relationship.
For example, Sales may contain:
Order_Date
Ship_Date
Both could connect to the Date table.
But Power BI generally allows only one active relationship between the same pair of tables at a time.
The other relationship can be inactive and activated when needed using DAX.
This becomes important when building advanced date analysis.
๐น 16. Filter Direction
Relationships control how filters move between tables.
In a simple star schema:
Customer
โ
Sales
filters usually flow from the dimension toward the fact table.
Avoid using bi-directional filtering everywhere.
It can create:
โข Ambiguous relationships
โข Unexpected results
โข Difficult-to-debug models
โข Performance issues
๐น 17. Don't Create Relationships Just Because Column Names Match
For example:
Customer_ID
appearing in two tables doesn't automatically mean they should be connected.
Check:
โ Same business meaning
โ Compatible data type
โ Correct grain
โ Unique values on the "one" side
โ Correct cardinality
๐ฏ Interview Question
What is the difference between a Fact Table and a Dimension Table?
Fact Table
Contains business transactions and measurable values.
Example:
"Sales, Quantity, Cost"
Dimension Table
Contains descriptive information used to analyze those transactions.
Example:
"Customer, Product, Date, Region"
Easy way to remember:
Fact = What happened
Dimension = Describe what happened
๐ก Key Lesson
Don't build your Power BI visuals before understanding your data model.
A good model makes your calculations easier, your reports more reliable, and your analysis much easier to maintain.
๐ Double Tap โค๏ธ For More
๐น 12. Why Month Number Is Important
If you display:
January
February
March
April
Power BI may sort month names alphabetically depending on the setup.
You need a:
Month Number
January โ 1
February โ 2
March โ 3
Then sort Month by Month Number.
๐น 13. Understand the Grain
Before creating relationships, ask:
"What does one row represent?"
For example:
Sales table
โ One row = One order
or:
Sales table
โ One row = One order item
These are different grains.
If you don't understand the grain, you can accidentally double-count sales.
๐น 14. Example of a Grain Problem
Suppose one order contains:
Order 1001
Laptop โ โน60,000
Mouse โ โน2,000
The order-item table has two rows.
If you join this with another table incorrectly, the โน62,000 order value could potentially be repeated.
So before creating relationships or calculations:
Always understand the grain of your tables.
๐น 15. Active and Inactive Relationships
Sometimes two tables can have more than one possible relationship.
For example, Sales may contain:
Order_Date
Ship_Date
Both could connect to the Date table.
But Power BI generally allows only one active relationship between the same pair of tables at a time.
The other relationship can be inactive and activated when needed using DAX.
This becomes important when building advanced date analysis.
๐น 16. Filter Direction
Relationships control how filters move between tables.
In a simple star schema:
Customer
โ
Sales
filters usually flow from the dimension toward the fact table.
Avoid using bi-directional filtering everywhere.
It can create:
โข Ambiguous relationships
โข Unexpected results
โข Difficult-to-debug models
โข Performance issues
๐น 17. Don't Create Relationships Just Because Column Names Match
For example:
Customer_ID
appearing in two tables doesn't automatically mean they should be connected.
Check:
โ Same business meaning
โ Compatible data type
โ Correct grain
โ Unique values on the "one" side
โ Correct cardinality
๐ฏ Interview Question
What is the difference between a Fact Table and a Dimension Table?
Fact Table
Contains business transactions and measurable values.
Example:
"Sales, Quantity, Cost"
Dimension Table
Contains descriptive information used to analyze those transactions.
Example:
"Customer, Product, Date, Region"
Easy way to remember:
Fact = What happened
Dimension = Describe what happened
๐ก Key Lesson
Don't build your Power BI visuals before understanding your data model.
A good model makes your calculations easier, your reports more reliable, and your analysis much easier to maintain.
๐ Double Tap โค๏ธ For More
โค8
๐ ๐ง๐ผ๐ฝ ๐๐ป-๐๐ฒ๐บ๐ฎ๐ป๐ฑ ๐๐ฅ๐๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป๐ ๐๐ผ ๐ ๐ฎ๐๐๐ฒ๐ฟ ๐ถ๐ป ๐ฎ๐ฌ๐ฎ๐ฒ ๐ฅ
Explore these FREE certification courses in todayโs most in-demand technology fields:
๐ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ :- https://pdlink.in/4eRA6eF
๐ป ๐ช๐ฒ๐ฏ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐ :- https://pdlink.in/4gP18Eo
๐ซ ๐๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ถ๐ฎ๐น ๐๐ป๐๐ฒ๐น๐น๐ถ๐ด๐ฒ๐ป๐ฐ๐ฒ :- https://pdlink.in/45HWa5Q
โ๏ธ ๐๐น๐ผ๐๐ฑ ๐๐ผ๐บ๐ฝ๐๐๐ถ๐ป๐ด :- https://pdlink.in/4zrksPn
๐ง ๐๐ช๐ฆ :- https://pdlink.in/4j4Jxtv
๐ก๏ธ ๐๐๐ฏ๐ฒ๐ฟ๐๐ฒ๐ฐ๐๐ฟ๐ถ๐๐ & ๐๐๐๐ฟ๐ฒ :- https://pdlink.in/4f0GNuH
โก Start learning today and prepare yourself for better career opportunities in 2026!
Explore these FREE certification courses in todayโs most in-demand technology fields:
๐ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ :- https://pdlink.in/4eRA6eF
๐ป ๐ช๐ฒ๐ฏ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐ :- https://pdlink.in/4gP18Eo
๐ซ ๐๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ถ๐ฎ๐น ๐๐ป๐๐ฒ๐น๐น๐ถ๐ด๐ฒ๐ป๐ฐ๐ฒ :- https://pdlink.in/45HWa5Q
โ๏ธ ๐๐น๐ผ๐๐ฑ ๐๐ผ๐บ๐ฝ๐๐๐ถ๐ป๐ด :- https://pdlink.in/4zrksPn
๐ง ๐๐ช๐ฆ :- https://pdlink.in/4j4Jxtv
๐ก๏ธ ๐๐๐ฏ๐ฒ๐ฟ๐๐ฒ๐ฐ๐๐ฟ๐ถ๐๐ & ๐๐๐๐ฟ๐ฒ :- https://pdlink.in/4f0GNuH
โก Start learning today and prepare yourself for better career opportunities in 2026!
โค1
Preparing for a SQL interview?
Focus on mastering these essential topics:
1. Joins: Get comfortable with inner, left, right, and outer joins.
Knowing when to use what kind of join is important!
2. Window Functions: Understand when to use
ROW_NUMBER, RANK(), DENSE_RANK(), LAG, and LEAD for complex analytical queries.
3. Query Execution Order: Know the sequence from FROM to
ORDER BY. This is crucial for writing efficient, error-free queries.
4. Common Table Expressions (CTEs): Use CTEs to simplify and structure complex queries for better readability.
5. Aggregations & Window Functions: Combine aggregate functions with window functions for in-depth data analysis.
6. Subqueries: Learn how to use subqueries effectively within main SQL statements for complex data manipulations.
7. Handling NULLs: Be adept at managing NULL values to ensure accurate data processing and avoid potential pitfalls.
8. Indexing: Understand how proper indexing can significantly boost query performance.
9. GROUP BY & HAVING: Master grouping data and filtering groups with HAVING to refine your query results.
10. String Manipulation Functions: Get familiar with string functions like CONCAT, SUBSTRING, and REPLACE to handle text data efficiently.
11. Set Operations: Know how to use UNION, INTERSECT, and EXCEPT to combine or compare result sets.
12. Optimizing Queries: Learn techniques to optimize your queries for performance, especially with large datasets.
Here you can find essential SQL Interview Resources๐
https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v
Like this post if you need more ๐โค๏ธ
Hope it helps :)
Focus on mastering these essential topics:
1. Joins: Get comfortable with inner, left, right, and outer joins.
Knowing when to use what kind of join is important!
2. Window Functions: Understand when to use
ROW_NUMBER, RANK(), DENSE_RANK(), LAG, and LEAD for complex analytical queries.
3. Query Execution Order: Know the sequence from FROM to
ORDER BY. This is crucial for writing efficient, error-free queries.
4. Common Table Expressions (CTEs): Use CTEs to simplify and structure complex queries for better readability.
5. Aggregations & Window Functions: Combine aggregate functions with window functions for in-depth data analysis.
6. Subqueries: Learn how to use subqueries effectively within main SQL statements for complex data manipulations.
7. Handling NULLs: Be adept at managing NULL values to ensure accurate data processing and avoid potential pitfalls.
8. Indexing: Understand how proper indexing can significantly boost query performance.
9. GROUP BY & HAVING: Master grouping data and filtering groups with HAVING to refine your query results.
10. String Manipulation Functions: Get familiar with string functions like CONCAT, SUBSTRING, and REPLACE to handle text data efficiently.
11. Set Operations: Know how to use UNION, INTERSECT, and EXCEPT to combine or compare result sets.
12. Optimizing Queries: Learn techniques to optimize your queries for performance, especially with large datasets.
Here you can find essential SQL Interview Resources๐
https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v
Like this post if you need more ๐โค๏ธ
Hope it helps :)
โค4
๐ Data Analyst Roadmap โ Part 25
๐ Power BI Level 4 โ DAX Fundamentals: Measures, Calculated Columns & Filter Context
Now that you understand Power Query and Data Modeling, it's time to learn one of the most important parts of Power BI:
DAX โ Data Analysis Expressions
DAX is the formula language used in Power BI to create calculations.
๐น 1. What Is DAX?
DAX is used to create:
โข Measures
โข Calculated columns
โข Calculated tables
For example:
Total Sales = SUM(Sales[Sales_Amount])
This simple measure can become the foundation for many Power BI reports.
๐น 2. Measures vs Calculated Columns
This is one of the most common Power BI interview questions.
โข
Calculated Column: Calculates a value for each row.
โข Example: Profit = Sales[Sales_Amount] - Sales[Cost]
โข If there are 1 million rows, the column contains a result for each row.
โข
Measure: Calculates a result when it is used in a visual.
โข Example: Total Sales = SUM(Sales[Sales_Amount])
โข A measure can change depending on the filters and selections in the report.
๐น 3. Simple Example
Suppose your Sales table contains:
โข Product: Laptop | Sales: 80,000 | Cost: 60,000
โข Product: Mouse | Sales: 2,000 | Cost: 1,000
โข
Product: Keyboard | Sales: 4,000 | Cost: 2,500
โข
Calculated column: Profit = Sales[Sales] - Sales[Cost]
calculates profit for every row.
โข
Measure: Total Profit = SUM(Sales[Sales]) - SUM(Sales[Cost])
calculates the total based on the current filter context.
๐น 4. Basic Aggregation Functions
Some DAX functions you'll use constantly are:
โข SUM(), AVERAGE(), MIN(), MAX(), COUNT(), COUNTROWS(), DISTINCTCOUNT()
Examples:
โข Total Sales = SUM(Sales[Sales])
โข Average Sales = AVERAGE(Sales[Sales])
โข Total Orders = COUNTROWS(Sales)
โข Total Customers = DISTINCTCOUNT(Sales[Customer_ID])
๐น 5. Why DISTINCTCOUNT() Matters
Suppose the same customer placed 10 orders.
COUNT() could count all transaction rows. But DISTINCTCOUNT(Sales[Customer_ID]) counts the customer only once.
So if you want "How many unique customers do we have?"
DISTINCTCOUNT() is often the right choice.
๐น 6. Creating Your First Measure
In Power BI: Modeling โ New Measure
Then write:
Total Sales = SUM(Sales[Sales_Amount])
You can then drag Total Sales into a Card visual. Result might show:
TOTAL SALES โน12.5 Cr
๐น 7. Measures Respond to Filters
This is where DAX becomes powerful.
Suppose your report contains Total Sales = โน10 Crore. Now select Region = West. The same measure Total Sales = SUM(Sales[Sales_Amount]) may now show โน3 Crore.
You didn't create another measure. The filter changed the calculation. This is called Filter Context.
๐น 8. What Is Filter Context?
Filter context means: The filters currently affecting a DAX calculation.
Filters can come from:
โข Slicers, Visuals, Rows and columns, Page filters, Report filters, Relationships, DAX expressions
For example: Region = West, Year = 2026, Category = Electronics. The Total Sales measure calculates only within that context.
๐น 9. A Simple Way to Understand Filter Context
Think of it like this:
โข Total Sales โ Which rows are currently visible? โ Apply filters โ Calculate SUM
This concept is extremely important.
๐ Power BI Level 4 โ DAX Fundamentals: Measures, Calculated Columns & Filter Context
Now that you understand Power Query and Data Modeling, it's time to learn one of the most important parts of Power BI:
DAX โ Data Analysis Expressions
DAX is the formula language used in Power BI to create calculations.
๐น 1. What Is DAX?
DAX is used to create:
โข Measures
โข Calculated columns
โข Calculated tables
For example:
Total Sales = SUM(Sales[Sales_Amount])
This simple measure can become the foundation for many Power BI reports.
๐น 2. Measures vs Calculated Columns
This is one of the most common Power BI interview questions.
โข
Calculated Column: Calculates a value for each row.
โข Example: Profit = Sales[Sales_Amount] - Sales[Cost]
โข If there are 1 million rows, the column contains a result for each row.
โข
Measure: Calculates a result when it is used in a visual.
โข Example: Total Sales = SUM(Sales[Sales_Amount])
โข A measure can change depending on the filters and selections in the report.
๐น 3. Simple Example
Suppose your Sales table contains:
โข Product: Laptop | Sales: 80,000 | Cost: 60,000
โข Product: Mouse | Sales: 2,000 | Cost: 1,000
โข
Product: Keyboard | Sales: 4,000 | Cost: 2,500
โข
Calculated column: Profit = Sales[Sales] - Sales[Cost]
calculates profit for every row.
โข
Measure: Total Profit = SUM(Sales[Sales]) - SUM(Sales[Cost])
calculates the total based on the current filter context.
๐น 4. Basic Aggregation Functions
Some DAX functions you'll use constantly are:
โข SUM(), AVERAGE(), MIN(), MAX(), COUNT(), COUNTROWS(), DISTINCTCOUNT()
Examples:
โข Total Sales = SUM(Sales[Sales])
โข Average Sales = AVERAGE(Sales[Sales])
โข Total Orders = COUNTROWS(Sales)
โข Total Customers = DISTINCTCOUNT(Sales[Customer_ID])
๐น 5. Why DISTINCTCOUNT() Matters
Suppose the same customer placed 10 orders.
COUNT() could count all transaction rows. But DISTINCTCOUNT(Sales[Customer_ID]) counts the customer only once.
So if you want "How many unique customers do we have?"
DISTINCTCOUNT() is often the right choice.
๐น 6. Creating Your First Measure
In Power BI: Modeling โ New Measure
Then write:
Total Sales = SUM(Sales[Sales_Amount])
You can then drag Total Sales into a Card visual. Result might show:
TOTAL SALES โน12.5 Cr
๐น 7. Measures Respond to Filters
This is where DAX becomes powerful.
Suppose your report contains Total Sales = โน10 Crore. Now select Region = West. The same measure Total Sales = SUM(Sales[Sales_Amount]) may now show โน3 Crore.
You didn't create another measure. The filter changed the calculation. This is called Filter Context.
๐น 8. What Is Filter Context?
Filter context means: The filters currently affecting a DAX calculation.
Filters can come from:
โข Slicers, Visuals, Rows and columns, Page filters, Report filters, Relationships, DAX expressions
For example: Region = West, Year = 2026, Category = Electronics. The Total Sales measure calculates only within that context.
๐น 9. A Simple Way to Understand Filter Context
Think of it like this:
โข Total Sales โ Which rows are currently visible? โ Apply filters โ Calculate SUM
This concept is extremely important.
โค4
If you understand filter context, you'll understand much more advanced DAX later.
๐น 10. CALCULATE()
One of the most important DAX functions is CALCULATE(). It evaluates an expression after modifying the filter context.
For example:
West Sales = CALCULATE([Total Sales], Customers[Region] = "West")
This calculates sales specifically for the West region.
๐น 11. Why CALCULATE() Is So Important
Many advanced DAX calculations are built around CALCULATE().
It is commonly used for:
โข Conditional calculations, Time intelligence, Comparisons, Removing filters, Adding filters, Changing filter context
Learning CALCULATE() properly is one of the biggest milestones in Power BI.
๐น 12. Measures Can Use Other Measures
You don't need to repeat the same logic everywhere.
โข Total Sales = SUM(Sales[Sales_Amount])
โข Total Cost = SUM(Sales[Cost])
โข Total Profit = [Total Sales] - [Total Cost]
This makes your model easier to maintain.
๐น 13. Profit Margin
You can create:
Profit Margin = DIVIDE([Total Profit], [Total Sales])
DIVIDE() is generally safer than manually using "/" because it handles division-by-zero cases more gracefully.
๐น 14. DIVIDE() vs "/"
Instead of [Total Profit] / [Total Sales] prefer:
Profit Margin = DIVIDE([Total Profit], [Total Sales], 0)
You can also specify an alternate result (0) when denominator is zero.
๐น 15. Calculated Column vs Measure โ When to Use Which?
Simple rule:
โข Use a calculated column when you need a value stored for each row. Examples: Profit per transaction, Customer category, Product classification
โข Use a measure when you need an aggregated or dynamically calculated result. Examples: Total Sales, Total Profit, Profit Margin, Average Order Value, Sales Growth %
For most report-level KPIs, measures are usually preferred.
๐น 16. Row Context
Calculated columns work with row context.
For example: Profit = Sales[Sales_Amount] - Sales[Cost]
Power BI evaluates this expression for each row. Think: Row Context = "Which row am I currently calculating?"
๐น 17. Filter Context vs Row Context
โข Row Context โ Focuses on the current row
โข Filter Context โ Defines which data is included in a calculation
Simple example: Calculated Column โ Row by row. Measure โ Based on current filter context.
Understanding this distinction is essential before moving into advanced DAX.
๐น 18. COUNTROWS()
COUNTROWS() counts rows in a table.
Example: Total Orders = COUNTROWS(Sales)
If one row represents one order, this can represent order count. But if your table contains multiple rows per order, it may not. In that situation: Total Orders = DISTINCTCOUNT(Sales[Order_ID]) may be more appropriate.
Always understand the grain of your table.
๐น 19. RELATED()
RELATED() can retrieve a value from a related table when working in row context.
For example: Region = RELATED(Customers[Region])
This can bring the customer's region into a row-level calculation when the relationship and model support it.
๐น 20. Don't Create Everything as a Calculated Column
A common beginner mistake is creating columns for every calculation.
For example: Total Sales, Total Profit, Average Sales, Profit Margin, Sales Growth
๐น 10. CALCULATE()
One of the most important DAX functions is CALCULATE(). It evaluates an expression after modifying the filter context.
For example:
West Sales = CALCULATE([Total Sales], Customers[Region] = "West")
This calculates sales specifically for the West region.
๐น 11. Why CALCULATE() Is So Important
Many advanced DAX calculations are built around CALCULATE().
It is commonly used for:
โข Conditional calculations, Time intelligence, Comparisons, Removing filters, Adding filters, Changing filter context
Learning CALCULATE() properly is one of the biggest milestones in Power BI.
๐น 12. Measures Can Use Other Measures
You don't need to repeat the same logic everywhere.
โข Total Sales = SUM(Sales[Sales_Amount])
โข Total Cost = SUM(Sales[Cost])
โข Total Profit = [Total Sales] - [Total Cost]
This makes your model easier to maintain.
๐น 13. Profit Margin
You can create:
Profit Margin = DIVIDE([Total Profit], [Total Sales])
DIVIDE() is generally safer than manually using "/" because it handles division-by-zero cases more gracefully.
๐น 14. DIVIDE() vs "/"
Instead of [Total Profit] / [Total Sales] prefer:
Profit Margin = DIVIDE([Total Profit], [Total Sales], 0)
You can also specify an alternate result (0) when denominator is zero.
๐น 15. Calculated Column vs Measure โ When to Use Which?
Simple rule:
โข Use a calculated column when you need a value stored for each row. Examples: Profit per transaction, Customer category, Product classification
โข Use a measure when you need an aggregated or dynamically calculated result. Examples: Total Sales, Total Profit, Profit Margin, Average Order Value, Sales Growth %
For most report-level KPIs, measures are usually preferred.
๐น 16. Row Context
Calculated columns work with row context.
For example: Profit = Sales[Sales_Amount] - Sales[Cost]
Power BI evaluates this expression for each row. Think: Row Context = "Which row am I currently calculating?"
๐น 17. Filter Context vs Row Context
โข Row Context โ Focuses on the current row
โข Filter Context โ Defines which data is included in a calculation
Simple example: Calculated Column โ Row by row. Measure โ Based on current filter context.
Understanding this distinction is essential before moving into advanced DAX.
๐น 18. COUNTROWS()
COUNTROWS() counts rows in a table.
Example: Total Orders = COUNTROWS(Sales)
If one row represents one order, this can represent order count. But if your table contains multiple rows per order, it may not. In that situation: Total Orders = DISTINCTCOUNT(Sales[Order_ID]) may be more appropriate.
Always understand the grain of your table.
๐น 19. RELATED()
RELATED() can retrieve a value from a related table when working in row context.
For example: Region = RELATED(Customers[Region])
This can bring the customer's region into a row-level calculation when the relationship and model support it.
๐น 20. Don't Create Everything as a Calculated Column
A common beginner mistake is creating columns for every calculation.
For example: Total Sales, Total Profit, Average Sales, Profit Margin, Sales Growth
โค3
These are generally better candidates for measures, because they need to respond dynamically to report filters.
๐ฏ Power BI Interview Questions
โข
What is DAX? DAX is the formula language used in Power BI for analytical calculations.
โข
What is the difference between a calculated column and a measure? A calculated column calculates values row by row and stores them in the model. A measure calculates dynamically based on the current filter context.
โข
What is filter context? The set of filters affecting a DAX calculation.
โข
What is row context? The current row being evaluated, particularly relevant to calculated columns and certain DAX iterators.
โข
What does CALCULATE() do? It evaluates an expression after modifying the filter context.
โข
Why use DIVIDE()? It provides safer division handling, especially when the denominator can be zero or blank.
๐ฏ Practice Task
Create these measures in a sample Sales model:
โข Total Sales = SUM(Sales[Sales_Amount])
โข Total Cost = SUM(Sales[Cost])
โข Total Profit = [Total Sales] - [Total Cost]
โข Profit Margin = DIVIDE([Total Profit], [Total Sales])
Then create Cards for each measure. Add a Region slicer. Change the region and observe what happens. This is one of the easiest ways to understand filter context practically.
๐ก The biggest DAX concept to understand at this stage is: A measure doesn't simply calculate a number. It calculates a number based on the current context of your report.
Power BI Resources: https://whatsapp.com/channel/0029Vai1xKf1dAvuk6s1v22c
Double Tap โค๏ธ For Part-5
๐ฏ Power BI Interview Questions
โข
What is DAX? DAX is the formula language used in Power BI for analytical calculations.
โข
What is the difference between a calculated column and a measure? A calculated column calculates values row by row and stores them in the model. A measure calculates dynamically based on the current filter context.
โข
What is filter context? The set of filters affecting a DAX calculation.
โข
What is row context? The current row being evaluated, particularly relevant to calculated columns and certain DAX iterators.
โข
What does CALCULATE() do? It evaluates an expression after modifying the filter context.
โข
Why use DIVIDE()? It provides safer division handling, especially when the denominator can be zero or blank.
๐ฏ Practice Task
Create these measures in a sample Sales model:
โข Total Sales = SUM(Sales[Sales_Amount])
โข Total Cost = SUM(Sales[Cost])
โข Total Profit = [Total Sales] - [Total Cost]
โข Profit Margin = DIVIDE([Total Profit], [Total Sales])
Then create Cards for each measure. Add a Region slicer. Change the region and observe what happens. This is one of the easiest ways to understand filter context practically.
๐ก The biggest DAX concept to understand at this stage is: A measure doesn't simply calculate a number. It calculates a number based on the current context of your report.
Power BI Resources: https://whatsapp.com/channel/0029Vai1xKf1dAvuk6s1v22c
Double Tap โค๏ธ For Part-5
โค5
๐ง๐ผ๐ฝ ๐ญ๐ฑ ๐ฃ๐๐๐ต๐ผ๐ป ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป๐ ๐ฌ๐ผ๐ ๐ ๐จ๐ฆ๐ง ๐๐ป๐ผ๐! ๐ฅ
Preparing for a Python Developer or Data Analyst interview?
Strengthen your fundamentals with these essential interview topics.
๐ฏ Perfect for Students โข Freshers โข Python Learners โข Data Analyst Aspirants
๐ ๐๐ฒ๐ ๐๐ต๐ฒ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป๐ ๐
https://pdlink.in/3TAUwk7
๐Save this for your next interview and share it with a friend!
Preparing for a Python Developer or Data Analyst interview?
Strengthen your fundamentals with these essential interview topics.
๐ฏ Perfect for Students โข Freshers โข Python Learners โข Data Analyst Aspirants
๐ ๐๐ฒ๐ ๐๐ต๐ฒ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป๐ ๐
https://pdlink.in/3TAUwk7
๐Save this for your next interview and share it with a friend!
๐ Data Analyst Roadmap โ Part 26
POWER BI LEVEL 5 โ DAX: CALCULATE(), FILTERS & CONTEXT
If you understand CALCULATE(), DAX becomes much easier.
The most important idea:
๐ CALCULATE() changes the filter context in which a measure is evaluated.
Example:
Total Sales =
SUM(Sales)[SalesAmount]
Now suppose you want sales only for the West region:
West Sales = CALCULATE( [Total Sales], Sales[Region] = "West" )
CALCULATE() takes the existing calculation and applies an additional filter.
๐น 1. CALCULATE() with multiple filters
You can apply multiple conditions:
West Electronics Sales = CALCULATE( [Total Sales], Sales[Region] = "West", Sales[Category] = "Electronics" )
This calculates sales where:
Region = West
AND
Category = Electronics
๐น 2. REMOVEFILTERS()
Sometimes you don't want a slicer or visual filter to affect your calculation.
Example:
Total Sales All Regions = CALCULATE( [Total Sales], REMOVEFILTERS(Sales[Region]) )
If a report is filtered to:
Region โ West
this measure still shows sales across all regions.
๐น 3. ALL()
ALL() can also remove filters.
Example:
Total Sales All Regions = CALCULATE( [Total Sales], ALL(Sales[Region]) )
A common use is calculating percentage of total.
Sales % of Total = DIVIDE( [Total Sales], CALCULATE( [Total Sales], ALL(Sales[Region]) ) )
If West has โน20 lakh sales and all regions have โน100 lakh:
Sales % of Total = 20%
๐น 4. ALLSELECTED()
ALLSELECTED() is useful when you want to respect the user's overall selections but ignore a visual-level grouping.
Example:
Sales % of Selected Regions = DIVIDE( [Total Sales], CALCULATE( [Total Sales], ALLSELECTED(Sales[Region]) ) )
If the user selects:
West + South
the calculation can compare each region against the total of the selected regions rather than the entire dataset.
๐น 5. KEEPFILTERS()
By default, CALCULATE() can replace an existing filter on the same column.
KEEPFILTERS() tells DAX to preserve the existing filter and apply the new condition on top of it.
Example:
CALCULATE( [Total Sales], KEEPFILTERS(Sales[Category] = "Electronics") )
Think of it as:
Existing filters
+
New filter
instead of replacing the existing filter.
๐น 6. FILTER()
FILTER() creates a filtered table based on a condition.
Example:
High Value Sales = CALCULATE( [Total Sales], FILTER( Sales, Sales[SalesAmount] > 10000))
This calculates sales from transactions greater than โน10,000.
Use FILTER() when the filtering logic is more complex than a simple column = value condition.
๐น 7. Context Transition
This sounds complicated, but the basic idea is simple.
DAX has two important contexts:
๐ Row Context
Works with the current row.
๐ Filter Context
Determines which data is included in a calculation.
CALCULATE() has a special behavior:
It can convert row context into filter context.
This is called:
Context Transition
You will encounter this especially when using CALCULATE() inside calculated columns or iterator functions such as SUMX(), FILTER(), etc.
๐ก A simple way to remember CALCULATE():
CALCULATE() = "Calculate this measure, but under these filter conditions."
For example:
[Total Sales]
โ
CALCULATE(
[Total Sales],
Region = "West"
)
โ
"Calculate Total Sales, but only for West."
POWER BI LEVEL 5 โ DAX: CALCULATE(), FILTERS & CONTEXT
If you understand CALCULATE(), DAX becomes much easier.
The most important idea:
๐ CALCULATE() changes the filter context in which a measure is evaluated.
Example:
Total Sales =
SUM(Sales)[SalesAmount]
Now suppose you want sales only for the West region:
West Sales = CALCULATE( [Total Sales], Sales[Region] = "West" )
CALCULATE() takes the existing calculation and applies an additional filter.
๐น 1. CALCULATE() with multiple filters
You can apply multiple conditions:
West Electronics Sales = CALCULATE( [Total Sales], Sales[Region] = "West", Sales[Category] = "Electronics" )
This calculates sales where:
Region = West
AND
Category = Electronics
๐น 2. REMOVEFILTERS()
Sometimes you don't want a slicer or visual filter to affect your calculation.
Example:
Total Sales All Regions = CALCULATE( [Total Sales], REMOVEFILTERS(Sales[Region]) )
If a report is filtered to:
Region โ West
this measure still shows sales across all regions.
๐น 3. ALL()
ALL() can also remove filters.
Example:
Total Sales All Regions = CALCULATE( [Total Sales], ALL(Sales[Region]) )
A common use is calculating percentage of total.
Sales % of Total = DIVIDE( [Total Sales], CALCULATE( [Total Sales], ALL(Sales[Region]) ) )
If West has โน20 lakh sales and all regions have โน100 lakh:
Sales % of Total = 20%
๐น 4. ALLSELECTED()
ALLSELECTED() is useful when you want to respect the user's overall selections but ignore a visual-level grouping.
Example:
Sales % of Selected Regions = DIVIDE( [Total Sales], CALCULATE( [Total Sales], ALLSELECTED(Sales[Region]) ) )
If the user selects:
West + South
the calculation can compare each region against the total of the selected regions rather than the entire dataset.
๐น 5. KEEPFILTERS()
By default, CALCULATE() can replace an existing filter on the same column.
KEEPFILTERS() tells DAX to preserve the existing filter and apply the new condition on top of it.
Example:
CALCULATE( [Total Sales], KEEPFILTERS(Sales[Category] = "Electronics") )
Think of it as:
Existing filters
+
New filter
instead of replacing the existing filter.
๐น 6. FILTER()
FILTER() creates a filtered table based on a condition.
Example:
High Value Sales = CALCULATE( [Total Sales], FILTER( Sales, Sales[SalesAmount] > 10000))
This calculates sales from transactions greater than โน10,000.
Use FILTER() when the filtering logic is more complex than a simple column = value condition.
๐น 7. Context Transition
This sounds complicated, but the basic idea is simple.
DAX has two important contexts:
๐ Row Context
Works with the current row.
๐ Filter Context
Determines which data is included in a calculation.
CALCULATE() has a special behavior:
It can convert row context into filter context.
This is called:
Context Transition
You will encounter this especially when using CALCULATE() inside calculated columns or iterator functions such as SUMX(), FILTER(), etc.
๐ก A simple way to remember CALCULATE():
CALCULATE() = "Calculate this measure, but under these filter conditions."
For example:
[Total Sales]
โ
CALCULATE(
[Total Sales],
Region = "West"
)
โ
"Calculate Total Sales, but only for West."
โค2
๐ฏ Interview Questions
1๏ธโฃ What does CALCULATE() do?
It evaluates an expression after modifying the filter context.
2๏ธโฃ What is the difference between ALL() and REMOVEFILTERS()?
Both can remove filters, but REMOVEFILTERS() clearly communicates that the intention is to remove filters.
3๏ธโฃ What is ALLSELECTED() used for?
It helps calculate results based on the user's selected context while ignoring certain visual-level filters.
4๏ธโฃ What is KEEPFILTERS()?
It preserves existing filters when applying additional filters.
5๏ธโฃ What is context transition?
The conversion of row context into filter context, typically triggered by CALCULATE().
๐งช PRACTICE
Create these measures:
Total Sales
West Sales
Total Sales All Regions
Sales % of Total
Sales % of Selected Regions
Then add:
โ Region slicer
โ Category slicer
โ Sales by Region chart
Change the slicers and observe how each measure behaves.
That observation is one of the best ways to understand DAX filter context.
๐ก Key lesson:
Don't memorize CALCULATE().
Understand what filters exist, which filters you want to change, and what result you expect.
Double Tap โค๏ธ For More
1๏ธโฃ What does CALCULATE() do?
It evaluates an expression after modifying the filter context.
2๏ธโฃ What is the difference between ALL() and REMOVEFILTERS()?
Both can remove filters, but REMOVEFILTERS() clearly communicates that the intention is to remove filters.
3๏ธโฃ What is ALLSELECTED() used for?
It helps calculate results based on the user's selected context while ignoring certain visual-level filters.
4๏ธโฃ What is KEEPFILTERS()?
It preserves existing filters when applying additional filters.
5๏ธโฃ What is context transition?
The conversion of row context into filter context, typically triggered by CALCULATE().
๐งช PRACTICE
Create these measures:
Total Sales
West Sales
Total Sales All Regions
Sales % of Total
Sales % of Selected Regions
Then add:
โ Region slicer
โ Category slicer
โ Sales by Region chart
Change the slicers and observe how each measure behaves.
That observation is one of the best ways to understand DAX filter context.
๐ก Key lesson:
Don't memorize CALCULATE().
Understand what filters exist, which filters you want to change, and what result you expect.
Double Tap โค๏ธ For More
โค9
๐๐ป๐ณ๐ผ๐๐๐ ๐ ๐ผ๐๐ ๐๐๐ธ๐ฒ๐ฑ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป๐ & ๐๐ป๐๐๐ฒ๐ฟ๐๐
โ
โ Real Interview Experiences
โ Company-specific Handbook
โ Interview Process & Preparation Roadmap
โ FREE Preparation Resources
โ
Specialist Programmer :- https://pdlink.in/4xDH2lD
โ
โ Systems Engineer :- https://pdlink.in/4xAhGoL
โ
โInfosys Digital Specialist Engineer :- https://pdlink.in/4yJ98gb
โ
โThe best way to prepare is to learn from candidates who've already been through the process.
โ
โ
โ Real Interview Experiences
โ Company-specific Handbook
โ Interview Process & Preparation Roadmap
โ FREE Preparation Resources
โ
Specialist Programmer :- https://pdlink.in/4xDH2lD
โ
โ Systems Engineer :- https://pdlink.in/4xAhGoL
โ
โInfosys Digital Specialist Engineer :- https://pdlink.in/4yJ98gb
โ
โThe best way to prepare is to learn from candidates who've already been through the process.
โ
โค7
๐ Data Analyst Roadmap โ Part 27
POWER BI LEVEL 6 โ DAX TIME INTELLIGENCE
Time-based analysis is one of the most important things you will do in Power BI.
Businesses commonly ask:
๐ How much did sales grow this month?
๐ How does this year compare with last year?
๐ What was the sales total year-to-date?
๐ Which month had the highest sales?
๐ Are we growing or declining over time?
DAX Time Intelligence helps answer these questions.
๐น 1. You need a proper Date Table
Before using time-intelligence functions, create a dedicated Date table.
Example:
Date =
CALENDAR(
DATE(2024,1,1),
DATE(2026,12,31)
)
Then create useful columns:
โข Year
โข Month
โข Month Number
โข Quarter
โข Year-Month
Sort Month by Month Number so that January โ February โ March โ... โ December instead of alphabetical ordering.
Mark the table as a Date table in Power BI.
๐น 2. Total Sales
Start with a basic measure:
Total Sales =
SUM(Sales[SalesAmount])
This becomes the foundation for most time-based calculations.
๐น 3. Year-to-Date โ TOTALYTD()
YTD means Year To Date. It calculates the cumulative value from the beginning of the year up to the current date.
Example:
Sales YTD =
TOTALYTD(
[Total Sales],
'Date'[Date]
)
If the current month is June, the measure calculates: January + February + March + April + May + June
๐น 4. Previous Year Sales
To compare the current period with the same period last year:
Sales LY =
CALCULATE(
[Total Sales],
SAMEPERIODLASTYEAR('Date'[Date])
)
If the current visual shows March 2026, this measure returns March 2025 sales.
๐น 5. Year-over-Year Growth
Now compare current sales with last year:
YoY Growth =
[Total Sales] - [Sales LY]
YoY Growth % =
DIVIDE(
[Total Sales] - [Sales LY],
[Sales LY]
)
Example:
โข Current Year Sales = โน120 lakh
โข Previous Year Sales = โน100 lakh
โข Growth = โน20 lakh
โข Growth % = 20%
๐น 6. DATEADD()
DATEADD() shifts the current date context.
Previous Month Sales:
Sales Previous Month =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
MONTH
)
)
Previous Year:
Sales Previous Year =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
YEAR
)
)
You can shift by:
โข DAY
โข MONTH
โข QUARTER
โข YEAR
๐น 7. Month-over-Month Growth
First calculate previous month sales:
Sales PM =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
MONTH
)
)
MoM Growth % =
DIVIDE(
[Total Sales] - [Sales PM],
[Sales PM]
)
Example:
โข January = โน10 lakh
โข February = โน12 lakh
โข MoM Growth = 20%
๐น 8. TOTALMTD() and TOTALQTD()
Similar to TOTALYTD():
MTD = Month To Date
Sales MTD =
TOTALMTD(
[Total Sales],
'Date'[Date]
)
QTD = Quarter To Date
Sales QTD =
TOTALQTD(
[Total Sales],
'Date'[Date]
)
So you can analyze:
โข MTD โ current month progress
โข QTD โ current quarter progress
โข YTD โ current year progress
๐น 9. Why Date Tables Matter
Suppose your sales table contains Order Date, Customer, Product, Sales. You could try to perform time calculations directly on Order Date, but a dedicated Date table gives you a consistent calendar for:
โข โ Year
โข โ Quarter
โข โ Month
โข โ Week
โข โ YTD
โข โ MTD
โข โ QTD
โข โ Previous period
โข โ YoY
โข โ MoM
This becomes especially important when working with multiple fact tables.
๐น 10. A Common Mistake
Don't create every time calculation as a calculated column.
Avoid creating separate columns for:
โข Previous Year Sales
โข YTD Sales
โข MoM Growth
โข YoY Growth
These are generally better as measures because they need to respond dynamically to filters and report context.
๐ฏ Interview Questions
1๏ธโฃ What is Time Intelligence in Power BI?
It is the use of DAX functions to perform calculations across dates and periods.
2๏ธโฃ Why do we need a Date table?
It provides a consistent calendar structure for reliable time-based analysis.
3๏ธโฃ What does SAMEPERIODLASTYEAR() do?
It returns the corresponding period from the previous year.
4๏ธโฃ What is the difference between MTD, QTD and YTD?
โข MTD = Month To Date
โข QTD = Quarter To Date
โข YTD = Year To Date
5๏ธโฃ What does DATEADD() do?
It shifts the current date context by a specified number of days, months, quarters, or years.
Double Tap โค๏ธ For More
POWER BI LEVEL 6 โ DAX TIME INTELLIGENCE
Time-based analysis is one of the most important things you will do in Power BI.
Businesses commonly ask:
๐ How much did sales grow this month?
๐ How does this year compare with last year?
๐ What was the sales total year-to-date?
๐ Which month had the highest sales?
๐ Are we growing or declining over time?
DAX Time Intelligence helps answer these questions.
๐น 1. You need a proper Date Table
Before using time-intelligence functions, create a dedicated Date table.
Example:
Date =
CALENDAR(
DATE(2024,1,1),
DATE(2026,12,31)
)
Then create useful columns:
โข Year
โข Month
โข Month Number
โข Quarter
โข Year-Month
Sort Month by Month Number so that January โ February โ March โ... โ December instead of alphabetical ordering.
Mark the table as a Date table in Power BI.
๐น 2. Total Sales
Start with a basic measure:
Total Sales =
SUM(Sales[SalesAmount])
This becomes the foundation for most time-based calculations.
๐น 3. Year-to-Date โ TOTALYTD()
YTD means Year To Date. It calculates the cumulative value from the beginning of the year up to the current date.
Example:
Sales YTD =
TOTALYTD(
[Total Sales],
'Date'[Date]
)
If the current month is June, the measure calculates: January + February + March + April + May + June
๐น 4. Previous Year Sales
To compare the current period with the same period last year:
Sales LY =
CALCULATE(
[Total Sales],
SAMEPERIODLASTYEAR('Date'[Date])
)
If the current visual shows March 2026, this measure returns March 2025 sales.
๐น 5. Year-over-Year Growth
Now compare current sales with last year:
YoY Growth =
[Total Sales] - [Sales LY]
YoY Growth % =
DIVIDE(
[Total Sales] - [Sales LY],
[Sales LY]
)
Example:
โข Current Year Sales = โน120 lakh
โข Previous Year Sales = โน100 lakh
โข Growth = โน20 lakh
โข Growth % = 20%
๐น 6. DATEADD()
DATEADD() shifts the current date context.
Previous Month Sales:
Sales Previous Month =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
MONTH
)
)
Previous Year:
Sales Previous Year =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
YEAR
)
)
You can shift by:
โข DAY
โข MONTH
โข QUARTER
โข YEAR
๐น 7. Month-over-Month Growth
First calculate previous month sales:
Sales PM =
CALCULATE(
[Total Sales],
DATEADD(
'Date'[Date],
-1,
MONTH
)
)
MoM Growth % =
DIVIDE(
[Total Sales] - [Sales PM],
[Sales PM]
)
Example:
โข January = โน10 lakh
โข February = โน12 lakh
โข MoM Growth = 20%
๐น 8. TOTALMTD() and TOTALQTD()
Similar to TOTALYTD():
MTD = Month To Date
Sales MTD =
TOTALMTD(
[Total Sales],
'Date'[Date]
)
QTD = Quarter To Date
Sales QTD =
TOTALQTD(
[Total Sales],
'Date'[Date]
)
So you can analyze:
โข MTD โ current month progress
โข QTD โ current quarter progress
โข YTD โ current year progress
๐น 9. Why Date Tables Matter
Suppose your sales table contains Order Date, Customer, Product, Sales. You could try to perform time calculations directly on Order Date, but a dedicated Date table gives you a consistent calendar for:
โข โ Year
โข โ Quarter
โข โ Month
โข โ Week
โข โ YTD
โข โ MTD
โข โ QTD
โข โ Previous period
โข โ YoY
โข โ MoM
This becomes especially important when working with multiple fact tables.
๐น 10. A Common Mistake
Don't create every time calculation as a calculated column.
Avoid creating separate columns for:
โข Previous Year Sales
โข YTD Sales
โข MoM Growth
โข YoY Growth
These are generally better as measures because they need to respond dynamically to filters and report context.
๐ฏ Interview Questions
1๏ธโฃ What is Time Intelligence in Power BI?
It is the use of DAX functions to perform calculations across dates and periods.
2๏ธโฃ Why do we need a Date table?
It provides a consistent calendar structure for reliable time-based analysis.
3๏ธโฃ What does SAMEPERIODLASTYEAR() do?
It returns the corresponding period from the previous year.
4๏ธโฃ What is the difference between MTD, QTD and YTD?
โข MTD = Month To Date
โข QTD = Quarter To Date
โข YTD = Year To Date
5๏ธโฃ What does DATEADD() do?
It shifts the current date context by a specified number of days, months, quarters, or years.
Double Tap โค๏ธ For More
โค6๐1
This media is not supported in your browser
VIEW IN TELEGRAM
๐ค New Powerful AI Model: GigaChat 3.5 Reasoning
This open-source LLM actually thinks before it answers! Perfect for complex coding, math, and reasoning prompts.
โ Built on GigaChat 3.5 Ultra: explores multiple step-by-step reasoning paths
โ Automated verification reinforces correct answers, enabling self-correction
โ Autonomously decides when to call external tools or revise earlier steps
โ Highly efficient: Linear attention uses 37% fewer tokens than DeepSeek V4 Flash Preview
๐ Massive benchmark gains over non-reasoning versions:
โข IFBench: 44 โ 77
โข Natural Plan: 64 โ 80
โข LiveCodeBench v6: 56 โ 85
๐ Open-sourced under MIT license. Weights on Hugging Face: fp8 | bf16
This open-source LLM actually thinks before it answers! Perfect for complex coding, math, and reasoning prompts.
โ Built on GigaChat 3.5 Ultra: explores multiple step-by-step reasoning paths
โ Automated verification reinforces correct answers, enabling self-correction
โ Autonomously decides when to call external tools or revise earlier steps
โ Highly efficient: Linear attention uses 37% fewer tokens than DeepSeek V4 Flash Preview
๐ Massive benchmark gains over non-reasoning versions:
โข IFBench: 44 โ 77
โข Natural Plan: 64 โ 80
โข LiveCodeBench v6: 56 โ 85
๐ Open-sourced under MIT license. Weights on Hugging Face: fp8 | bf16
โค5
๐ ๐
๐๐๐ ๐๐๐ ๐๐๐ซ๐ญ๐ข๐๐ข๐๐๐ญ๐ข๐จ๐ง ๐๐จ๐ฎ๐ซ๐ฌ๐๐ฌ ๐
Explore these beginner-friendly courses and strengthen your resume!
๐ฏ Perfect for Students, Freshers and Working Professionals
๐ป Learn Online at Your Own Pace
๐ Earn Certificates After Successful Completion
๐ ๐๐ป๐ฟ๐ผ๐น๐น ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐:-
https://pdlink.in/45KgqDR
๐ฅ Donโt just collect certificatesโbuild skills that employers value. Share this with your friends!
Explore these beginner-friendly courses and strengthen your resume!
๐ฏ Perfect for Students, Freshers and Working Professionals
๐ป Learn Online at Your Own Pace
๐ Earn Certificates After Successful Completion
๐ ๐๐ป๐ฟ๐ผ๐น๐น ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐:-
https://pdlink.in/45KgqDR
๐ฅ Donโt just collect certificatesโbuild skills that employers value. Share this with your friends!
๐ Data Analyst Roadmap โ Part 28
POWER BI LEVEL 7 โ DAX ITERATORS: SUMX, AVERAGEX, COUNTX & VIRTUAL CALCULATIONS
You already know functions like "SUM()" and "AVERAGE()". But sometimes a business calculation needs to happen row by row before the final result is calculated. That's where DAX iterators become important.
๐น 1. What is an Iterator?
Iterator functions evaluate an expression for each row of a table and then combine the results.
Common iterators include: "SUMX()", "AVERAGEX()", "COUNTX()", "MINX()", "MAXX()"
๐น 2. SUM() vs SUMX()
Suppose your Sales table has: Quantity, Unit Price. You want total revenue.
With "SUM()", you can directly add a column:
Total Sales = SUM(Sales[SalesAmount])
But if SalesAmount doesn't exist and you need Quantity ร Unit Price you can use "SUMX()":
Total Sales =
SUMX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
DAX evaluates: Row 1 โ Quantity ร Price, Row 2 โ Quantity ร Price, Row 3 โ Quantity ร Price, Then adds all the results.
๐น 3. AVERAGEX()
Suppose you want the average revenue generated by each transaction:
Average Sales =
AVERAGEX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
The expression is calculated for every row first. Then the average is calculated.
๐น 4. COUNTX()
"COUNTX()" counts the number of non-blank results produced by an expression.
Transactions With Value =
COUNTX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
This can be useful when the calculation itself determines whether a value exists. For simply counting rows, however, "COUNTROWS()" is usually clearer:
Transaction Count = COUNTROWS(Sales)
๐น 5. MINX() and MAXX()
You can also find the minimum or maximum value from a calculated expression.
Highest Transaction =
MAXX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
Lowest Transaction =
MINX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
๐น 6. Iterators Create Row Context
This is one of the most important DAX concepts. Inside:
SUMX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
DAX evaluates the expression for the current row. That is called: Row Context.
So: "SUM()" โ directly aggregates a column, "SUMX()" โ evaluates an expression row by row and then aggregates the result
๐น 7. A Practical Profit Example
Suppose your table contains: Quantity, Sales Price, Cost Price. You can calculate total profit without creating a Profit column:
Total Profit =
SUMX(
Sales,
(Sales[SalesPrice] - Sales[CostPrice]) * Sales[Quantity]
)
This is extremely useful because the calculation happens dynamically inside the measure.
๐น 8. Iterators with CALCULATE()
Iterators become even more powerful when combined with "CALCULATE()". For example, you might want to calculate sales only for high-value transactions:
High Value Sales =
SUMX(
FILTER(
Sales,
Sales[SalesAmount] > 10000
),
Sales[SalesAmount]
)
Here: "FILTER()" โ creates the relevant set of rows, "SUMX()" โ evaluates and adds the values. This combination appears frequently in real Power BI projects.
๐น 9. Virtual Tables
DAX can create temporary tables during a calculation. These are called: Virtual Tables. They aren't permanently stored in your model.
For example:
High Value Sales =
CALCULATE(
[Total Sales],
FILTER(
Sales,
Sales[SalesAmount] > 10000
)
)
The filtered table exists only while the calculation is being evaluated.
๐น 10. SUMX() with Related Tables
Iterators can also work with relationships.
Suppose: Product table contains: Product ID, Product Name, Cost. Sales table contains: Product ID, Quantity.
You could calculate total cost using:
Total Cost =
SUMX(
Sales,
Sales[Quantity] * RELATED(Product[Cost])
)
"RELATED()" retrieves the related product cost for the current Sales row. Then "SUMX()" performs the calculation for every sales row.
๐น 11. When Should You Use SUMX()?
Use "SUMX()" when the calculation requires an expression. For example: Quantity ร Price, Quantity ร Cost, Revenue โ Cost, Discount ร Quantity, Price ร Exchange Rate
If the value already exists in a column and you simply need the total, "SUM()" is usually simpler.
๐ฏ Interview Questions
1๏ธโฃ What is an iterator in DAX? - A function that evaluates an expression row by row over a table.
2๏ธโฃ What is the difference between SUM() and SUMX()? - "SUM()" directly aggregates a column, while "SUMX()" evaluates an expression for each row before aggregating.
3๏ธโฃ What does the X in SUMX() represent? - It indicates that the function iterates through rows and evaluates an expression.
4๏ธโฃ What is row context? - The context representing the current row while DAX evaluates an expression.
5๏ธโฃ Can SUMX() work with FILTER()? - Yes. FILTER() can define the rows to process, while SUMX() performs the row-by-row calculation.
๐งช PRACTICE
Create a Sales table containing: Customer, Product, Quantity, Unit Price, Unit Cost
Then create: Total Sales using SUMX(), Total Cost using SUMX(), Total Profit using SUMX(), Average Transaction Value using AVERAGEX(), Highest Transaction using MAXX()
Finally, add: Region slicer, Product slicer, Month slicer. Change the filters and observe how your measures respond.
Power BI Resources: https://t.me/PowerBI_analyst
๐ก Double Tap โค๏ธ For More
POWER BI LEVEL 7 โ DAX ITERATORS: SUMX, AVERAGEX, COUNTX & VIRTUAL CALCULATIONS
You already know functions like "SUM()" and "AVERAGE()". But sometimes a business calculation needs to happen row by row before the final result is calculated. That's where DAX iterators become important.
๐น 1. What is an Iterator?
Iterator functions evaluate an expression for each row of a table and then combine the results.
Common iterators include: "SUMX()", "AVERAGEX()", "COUNTX()", "MINX()", "MAXX()"
๐น 2. SUM() vs SUMX()
Suppose your Sales table has: Quantity, Unit Price. You want total revenue.
With "SUM()", you can directly add a column:
Total Sales = SUM(Sales[SalesAmount])
But if SalesAmount doesn't exist and you need Quantity ร Unit Price you can use "SUMX()":
Total Sales =
SUMX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
DAX evaluates: Row 1 โ Quantity ร Price, Row 2 โ Quantity ร Price, Row 3 โ Quantity ร Price, Then adds all the results.
๐น 3. AVERAGEX()
Suppose you want the average revenue generated by each transaction:
Average Sales =
AVERAGEX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
The expression is calculated for every row first. Then the average is calculated.
๐น 4. COUNTX()
"COUNTX()" counts the number of non-blank results produced by an expression.
Transactions With Value =
COUNTX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
This can be useful when the calculation itself determines whether a value exists. For simply counting rows, however, "COUNTROWS()" is usually clearer:
Transaction Count = COUNTROWS(Sales)
๐น 5. MINX() and MAXX()
You can also find the minimum or maximum value from a calculated expression.
Highest Transaction =
MAXX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
Lowest Transaction =
MINX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
๐น 6. Iterators Create Row Context
This is one of the most important DAX concepts. Inside:
SUMX(
Sales,
Sales[Quantity] * Sales[UnitPrice]
)
DAX evaluates the expression for the current row. That is called: Row Context.
So: "SUM()" โ directly aggregates a column, "SUMX()" โ evaluates an expression row by row and then aggregates the result
๐น 7. A Practical Profit Example
Suppose your table contains: Quantity, Sales Price, Cost Price. You can calculate total profit without creating a Profit column:
Total Profit =
SUMX(
Sales,
(Sales[SalesPrice] - Sales[CostPrice]) * Sales[Quantity]
)
This is extremely useful because the calculation happens dynamically inside the measure.
๐น 8. Iterators with CALCULATE()
Iterators become even more powerful when combined with "CALCULATE()". For example, you might want to calculate sales only for high-value transactions:
High Value Sales =
SUMX(
FILTER(
Sales,
Sales[SalesAmount] > 10000
),
Sales[SalesAmount]
)
Here: "FILTER()" โ creates the relevant set of rows, "SUMX()" โ evaluates and adds the values. This combination appears frequently in real Power BI projects.
๐น 9. Virtual Tables
DAX can create temporary tables during a calculation. These are called: Virtual Tables. They aren't permanently stored in your model.
For example:
High Value Sales =
CALCULATE(
[Total Sales],
FILTER(
Sales,
Sales[SalesAmount] > 10000
)
)
The filtered table exists only while the calculation is being evaluated.
๐น 10. SUMX() with Related Tables
Iterators can also work with relationships.
Suppose: Product table contains: Product ID, Product Name, Cost. Sales table contains: Product ID, Quantity.
You could calculate total cost using:
Total Cost =
SUMX(
Sales,
Sales[Quantity] * RELATED(Product[Cost])
)
"RELATED()" retrieves the related product cost for the current Sales row. Then "SUMX()" performs the calculation for every sales row.
๐น 11. When Should You Use SUMX()?
Use "SUMX()" when the calculation requires an expression. For example: Quantity ร Price, Quantity ร Cost, Revenue โ Cost, Discount ร Quantity, Price ร Exchange Rate
If the value already exists in a column and you simply need the total, "SUM()" is usually simpler.
๐ฏ Interview Questions
1๏ธโฃ What is an iterator in DAX? - A function that evaluates an expression row by row over a table.
2๏ธโฃ What is the difference between SUM() and SUMX()? - "SUM()" directly aggregates a column, while "SUMX()" evaluates an expression for each row before aggregating.
3๏ธโฃ What does the X in SUMX() represent? - It indicates that the function iterates through rows and evaluates an expression.
4๏ธโฃ What is row context? - The context representing the current row while DAX evaluates an expression.
5๏ธโฃ Can SUMX() work with FILTER()? - Yes. FILTER() can define the rows to process, while SUMX() performs the row-by-row calculation.
๐งช PRACTICE
Create a Sales table containing: Customer, Product, Quantity, Unit Price, Unit Cost
Then create: Total Sales using SUMX(), Total Cost using SUMX(), Total Profit using SUMX(), Average Transaction Value using AVERAGEX(), Highest Transaction using MAXX()
Finally, add: Region slicer, Product slicer, Month slicer. Change the filters and observe how your measures respond.
Power BI Resources: https://t.me/PowerBI_analyst
๐ก Double Tap โค๏ธ For More
โค7
๐๐ฅ๐๐ ๐๐ ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ ๐ ๐ฎ๐๐๐ฒ๐ฟ๐ฐ๐น๐ฎ๐๐ ๐
Join this expert-led masterclass and discover how to become industry-ready for high-growth AI roles.
๐ Date: 24 September 2026
โฐ Time: 7:00 PMโ9:00 PM IST
๐ Mode: Online
๐ Certificate: Available to all attendees
Eligibility :- Graduates Passing In 2025 or earlier
๐ ๐ฅ๐ฒ๐ด๐ถ๐๐๐ฒ๐ฟ ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐
https://pdlink.in/4xAMeGW
โก Register now and take your first step towards a successful career in AI!
Join this expert-led masterclass and discover how to become industry-ready for high-growth AI roles.
๐ Date: 24 September 2026
โฐ Time: 7:00 PMโ9:00 PM IST
๐ Mode: Online
๐ Certificate: Available to all attendees
Eligibility :- Graduates Passing In 2025 or earlier
๐ ๐ฅ๐ฒ๐ด๐ถ๐๐๐ฒ๐ฟ ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ ๐
https://pdlink.in/4xAMeGW
โก Register now and take your first step towards a successful career in AI!
โค1
Which DAX function evaluates an expression row by row and then adds the results?
Anonymous Quiz
14%
A) SUM
63%
B) SUMX
11%
C) COUNT
12%
D) CALCULATE
What is the main difference between SUM() and SUMX()?
Anonymous Quiz
1%
A) SUM() works only with text
5%
B) SUMX() works only with dates
93%
C) SUM() aggregates a column, while SUMX() evaluates an expression row by row
1%
D) There is no difference
Which function would you use to calculate the average of a row-level expression?
Anonymous Quiz
21%
A) AVERAGE
55%
B) AVERAGEX
18%
C) AVGX
7%
D) MEANX
What does the "X" in functions such as SUMX() and AVERAGEX() indicate?
Anonymous Quiz
13%
A) The function works only with Excel
69%
B) The function uses row-by-row iteration
7%
C) The function removes filters
11%
D) The function creates a relationship
โค4