Content Type: Tutorial Note
Topic: Using Power BI’s new Quick Measure Suggestions (Natural Language DAX Generator)
Purpose: Inform and warn users about feature benefits, limitations, and practical usage tips.
File > Options and Settings > Preview Features
.SUM([Quantity])
correctly.Example: Calculating Total Sales
requires multiplying Quantity * Price
for each row. The AI cannot infer required logic unless explicitly stated.
SUMX
formula.Implication: AI performs better with clear, specific prompts.
Table[Total Sales]
, which is against DAX best practices and can cause errors if the measure moves tables. Manual cleanup required.KEEPFILTERS
function, which isn’t always necessary. Suggest reviewing/removing as appropriate.Tip: Never use AI-generated DAX formulas blindly in production — always validate against your business logic!