Posts filed under External Tools

(Livestream Replay) Calculation Groups - with Kane Snyder

Hang out with us as Kane Snyder walks us through many creative and incredibly useful ways to utilize calculation groups when developing models in Power BI Desktop!

RELATED CONTENT 🔗

Kane’s Blog
Kane’s Twitter
Calculation Groups Article (SQLBI)

Download Report From The Blog Files Page

Showing DAX Expressions When Using Power BI Datasets (Live)

Video by: Reid Havens

Learn how to display DAX expressions in the description tooltip - when hovering over the measure in the fields list. This can be applied to all measures easily and effortlessly using Tabular Editor.

Related Content

External Tool - Tabular Editor

External Tool - DAX Studio

Code Snippet

foreach (var m in Model.AllMeasures) { m.Description = m.Expression; }