Avu Dax Formula Patterns
Avu Dax Formula Patterns
Common Analytical
Problems
A Guide to DAX Formula Patterns
Time Intelligence
Used for time-based analysis, aggregating data over periods.
Code: RELATED(Product[Price])
Application: CALCULATE(SUM(Sales[Revenue]),
KEEPFILTERS(Sales[Country]='USA'))
Can be resource-intensive.
Code: DATESYTD(Date[Date])
A lookup function.
Code: COALESCE(Sales[Discount], 0)
Application: GENERATESERIES(1,10,1)
Code: ISFILTERED(Date[Month])
Use sparingly.
Advanced topic.
Often resource-intensive.
ENTERPRISEDNA.CO