Finding the Highest and Lowest Values Across Many Columns in Power BI using DAX

When working with data in Power BI, sometimes you need to find the highest (maximum) and lowest (minimum) values across several columns. This task is straightforward in programs like Excel where you can just use the MAX and MIN functions with multiple arguments like so: MAX(columnA, columnB, columnC). However, in Power BI, using DAX (Data … Read more

Dimensional modeling for Power BI: The purpose of data modeling

Wonder what the number one most important skill is when building Power BI semantic models? Or if Kimball data modeling is still relevant? Then you have come to the right place. Data modeling techniques and methodologies are a common discussion topic when working on BI or data warehouse projects. There are multiple practices of data … Read more

Power BI data types in relationships – Does it matter?

If you have a background in traditional database development you might have learned that using integer over e.g. string has a performance benefit in for example indexes and joins. You might have brought this knowledge with you into the world of Power BI or tabular development. Perhaps you are enforcing the use of integer columns … Read more

Level up your Power BI model using DAX Studio – Part 2

Welcome back to part two of how to level up your workflow and Power BI model using DAX Studio! I’m showing you my go to scenarios on when to use Power BI together with DAX Studio. In the first part of this post I started with an introduction to what DAX Studio is. I discussed … Read more

Level up your Power BI model using DAX Studio – Part 1

DAX Studio is a popular tool used by many Microsoft data professionals. It is commonly used as an advanced enterprise tool when working with tabular models. Are you new to DAX Studio or want to learn more about how to use it in combination with Power BI? Follow along while I show you my go … Read more

Inside Power BI – Compression and the power of Vertipaq

Vertipaq is the actual database engine used in Power BI. It is also the engine used in Analysis Services Tabular and Excel Power Pivot.One of the reasons behind Vertipaq’s great performance is due to the different compression and encoding techniques that it applies to the data. The overall purpose of the different compression techniques used … Read more

Conditional formatting a matrix with Calculation groups in Power BI

Time to read: 5 minutes Calculation groups is a powerful feature in Power BI. However, using them adds some complexity and brings some limitations to Power BI’s native functionality. Or should I say, changes them. One of these cases are related to the use of Conditional formatting using a calculation group as e.g. columns in … Read more

Why you shouldn’t use Power BI “Publish to web” and what to use instead

In this blog post I will try and guide you through Power BI’s functionality Publish to web as well as the security aspects of sharing your data. How does it work, when should I and when shouldn’t I use it? What is it? Power BI’s Publish to web functionality has been widely used since it’s … Read more