Power bi relatedtable function

Secrets of Power BI RelatedTable using a simple example

This guide will help you understand two important DAX relationship functions: Related RelatedTable If there is one function in Excel that every user, novice to experts, frequently uses, it is undoubtedly the VLOOKUP. Think of Related and Power BI RelatedTable functions as an efficient VLOOKUP that allows you to retrieve data or tuples from relates…

DAX summarize function in parallel with SQL

DAX summarize function in parallel with SQL

DAX summarize function is used to group the data. If you are coming from the SQL world, then summarize function in DAX behaves like group by function in SQL. The syntax of summarize function in DAX is SUMMARIZE(<table>, <groupBy_columnName>[, <groupBy_columnName>]…[, <name>, <expression>]…) <table>: The first parameter of summarize function is a table. You can use here…

Power BI vs SSRS – The question now is which to use when?

Power BI vs SSRS – The question now is which to use when?

It is very critical for organizations of all sizes to be able to use data and derive meaningful insights from it. The results are always presented as reports or dashboard visualizations. Microsoft offers Power BI vs SSRS as two report development tools – each with their own strengths and use cases to be chosen for….

Power BI measure creating in parallel with quick measure

Power BI measure creation in parallel with a quick measure

Power BI measure is the core of dax. Whenever you start working on your power bi projects, you don’t need to create power bi measure right away. Measures execute on report level or an aggregate level to compute the provided data.  We need to import the sample Adventureworks excel dataset. It has different sheets in…

DAX parent-child functions to create organizational hierarcy

DAX parent-child functions to implement hierarchies

DAX parent-child functions are used to achieve organizational hierarchy. Power BI does not support the parent-child regime or self-join. If you have a data model that contains a parent-child structure, then power bi offers the following useful functions. With the help of these functions, it is easy to implement a hierarchical organizational structure. These functions…

Power BI Isfiltered vs Iscrossfiltered in Dax

Power BI Isfiltered vs Iscrossfiltered in Dax

Power BI Isfiltered and Iscrossfiltered functions are sometimes very confusing for the newbie. These DAX functions are beneficial when we develop very advanced dashboards in Power BI, where we need to check multiple filtering conditions on the columns that are being filtered. We can’t control the user’s behavior and how they will interact with the…