Introduction to Writing DAX formulas Flashcards
What is the meaning of DAX?
Data Analysis Expressions
What three types of calculations can be added to your semantic model through DAX?
Calculated Tables
Calculated Columns
Measures
Calculated Table formula can _____ or ______
Duplicate or transform existing model data
Create a series of data to produce a new table.
Calculated table data is always imported into your model, so it increases the model storage size and can prolong data refresh time.
True
A calculated table can’t connect to external data; you need to use ______ to accomplish that task.
Power Query
Calculated tables can be useful in various scenarios:
Date tables
Role-playing dimensions
What-if analysis
____________ are required to apply special time filters known as time intelligence.
Data Tables
DAX time intelligence functions only work correctly when a date table is set up.
True
When your source data doesn’t include a date table, you can create one as calculated tables by using the ________ or ________ DAX functions.
CALENDAR or CALENDARAUTO
When two model tables have multiple relationships?
Role-playing dimensions
Microsoft Power BI models only allow ____ active relationship between tables, which in the model diagram is indicated as a _______.
One, solid line
The active relationship is used by default to _______.
Propagate filters
Any remaining relationships between the two tables are ________.
inactive
Inactive relationships are only used when they’re expressly requested in a calculated formula by using the ___________ DAX function.
USERELATIONSHIP
Allow report users to select or filter by values that are stored in the calculated table.
What-if parameters