π Power BI Interview Questions & Answers (Intermediate Level 22β50) #14
Unanswered
hirenpatel1903
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
π Power BI Interview Questions & Answers (Intermediate Level 22β50)
A structured and interview-focused collection of Power BI Intermediate Level Questions & Answers designed for:
This section covers Data Modeling, DAX, RLS, Service, Refresh, and Performance concepts.
π Why This Repository?
β Interview-focused answers
β Clear and practical explanations
β Covers real-world scenarios
β Beginner β Intermediate β Advanced structure
β SEO-optimized for GitHub discoverability
π‘ Intermediate Level (22β50)
22οΈβ£ What is Star Schema?
Star Schema is a data modeling technique where:
Benefits:
23οΈβ£ What is Snowflake Schema?
Snowflake Schema is an extension of Star Schema where:
Pros:
Cons:
24οΈβ£ What is Cardinality in Relationships?
Cardinality defines how tables relate:
Most common in Power BI: One-to-Many
25οΈβ£ What is Cross-Filter Direction?
Defines how filters flow between tables:
Use bi-directional carefully to avoid ambiguity.
26οΈβ£ Difference Between Import & DirectQuery?
27οΈβ£ What is Composite Model?
Composite model allows combining:
In the same Power BI model.
28οΈβ£ What is Row-Level Security (RLS)?
RLS restricts data visibility for users.
Example:
29οΈβ£ How Do You Implement RLS?
Steps:
30οΈβ£ What is a Hierarchy in Power BI?
Hierarchy is a structured drill-down path.
Example:
Year β Quarter β Month β Day
Improves navigation and reporting.
31οΈβ£ What is KPI Visual?
KPI visual displays:
Used for performance tracking.
32οΈβ£ What is Conditional Formatting?
Changes visual appearance based on rules.
Example:
33οΈβ£ What is Data Refresh?
Data refresh updates dataset with latest source data.
Types:
34οΈβ£ What is Scheduled Refresh?
Automatic refresh at defined intervals in Power BI Service.
Requires:
35οΈβ£ What is Incremental Refresh?
Refreshes only new or changed data instead of full dataset.
Improves:
36οΈβ£ What is Power BI Gateway?
Gateway connects:
On-Premise Data β Power BI Service
Types:
37οΈβ£ What is Power BI Service?
Cloud platform for:
38οΈβ£ What is Power BI Report Server?
On-premises server to host Power BI reports without cloud dependency.
39οΈβ£ What Are Workspace Roles?
40οΈβ£ What is a Dataset in Power BI?
Dataset is the published data model containing:
41οΈβ£ What is Data Modeling?
Data modeling is the process of:
42οΈβ£ What is Context in DAX?
Context determines how DAX calculations behave.
Types:
43οΈβ£ What is Filter Context?
Filter context is created by:
Measures react dynamically to filter context.
44οΈβ£ What is Row Context?
Row context applies to:
It evaluates one row at a time.
45οΈβ£ Difference Between SUM and SUMX?
Example:
SUM(Sales[Amount])
SUMX(Sales, Sales[Qty] * Sales[Price])
46οΈβ£ What is CALCULATE Function?
CALCULATE modifies filter context.
Example:
CALCULATE(SUM(Sales[Amount]), Region = "East")
Most powerful DAX function.
47οΈβ£ What is RELATED Function?
RELATED retrieves value from related table.
Used in calculated columns.
48οΈβ£ What is ALL Function?
ALL removes filters from a table or column.
Used for:
49οΈβ£ What is Time Intelligence in DAX?
Time-based calculations such as:
Requires proper Date Table.
50οΈβ£ What is YTD Calculation?
Year-To-Date (YTD) calculates cumulative value from start of year to current date.
Example:
TOTALYTD(SUM(Sales[Amount]), Date[Date])
π― What You Should Master at Intermediate Level
π Coming Next
β If You Found This Helpful
π Follow & Subscribe
π Live YouTube Statistics
π Subscribe here: https://www.youtube.com/@einzigartige_/
Beta Was this translation helpful? Give feedback.
All reactions