DAX
π©π« If you are looking Power BI related documents then this post is for you.
π In this 2024 DATA ANALYTICS is highly Boomed but don't think you can become a DATA ANALYST with in 2hrs or 2 days.
So just deep dive into 1 DAX formula per day and do practice then you will be familiar end of 1 month.
πData Analysis Expressions (DAX)
πData Analysis Expressions (DAX) is a powerful formula language that is at the core of Microsoft Power BI and other Microsoft products like Excel and SQL Server Analysis Services.
πDAX is designed for creating custom calculations, aggregations, and data transformations within these tools.
πThis chapter introduces you to the fundamental concepts of DAX and lays the foundation for your journey into mastering its essentials.
πIt means that it is a type of formula or expressions that are used for the analysis and calculations of data.
πYou need to understand its basic syntax.
πDAX formulas are written in a similar way to Excel formulas, using functions, operators, and references to columns or measures in your data model.
Ex: If you have a Sales table with columns Quantity and Unit Price.
πYou want to create a calculated column that calculates the total sales for each row.
Total Sales = Sales[Quantity] * Sales[Unit Price]
Total Sales is the name of the calculated column, and the formula multiplies the Quantity and Unit Price columns.
Comments
Post a Comment