Power BI - DAX Math Functions
Last Updated :
21 Mar, 2023
A robust set of cloud-based business analytics tools called Power BI makes it simple to combine data from many sources, analyze and visualize information, and share insights. The Mathematical functions in Excel are quite similar to those in Data Analysis Expressions (DAX). Many functions in the Data Analysis Expression (DAX) return tables as opposed to values. The table is used as input for other functions but is not displayed. Trigonometric operations produce a result. However, some of the most popular data analyses use Measures. A measure is added to the field after the query has been executed.
DAX Math Functions
Let's practice some of the commonly used DAX Math Functions on a sample dataset of library supplies companies. The screenshot of the dataset is given below:
Now, go to the Power BI desktop to load the dataset from excel.
Power BI Desktop
In the image given below, the dataset is uploaded in Power BI.
Load the dataset
Let's now understand the important DAX math functions in detail:
DAX ABS Math Function
This function returns a number's absolute value. Whether whole or decimal, a decimal number without its sign represents a number's absolute value. When nested in functions that demand a positive integer, you can use the ABS function to make the guarantee that only non-negative numbers are returned from expressions.
Syntax: ABS(<number>)
- number: The number you wish to round, or a mention of a column of numbers.
Calculating the difference between the Sum of the Tax amount (INR) and the Sum of the Total amount (INR).
Example: ABS = ABS(572369.5499999996 - 6943454.36)
DAX Ceiling Math Function
This function increases a number by rounding it up to the nearest integer or significant multiple. The two CEILING functions in DAX differ in the following ways:
The Excel CEILING function mimics the behavior of the Excel CEILING function. When determining the ceiling value, the ISO.CEILING function behaves as specified by ISO.
Syntax: CEILING(<number>, <significance>)
- number: The number you wish to round, or a mention of a column of numbers.
- significance: The significant multiple that you want to round. For instance, enter 1 to round to the nearest integer.
Example: ceiling = CEILING(572369.5499999996, 0.01)
DAX Convert Math Function
The convert function performs the transformation of a data type-specific expression.
Syntax: CONVERT(<Expression>, <Datatype>)
- Expression: Any valid expression
- Datatype: A list that comprises the following types of data: INTEGER (Whole Number), DOUBLE (Decimal Number), STRING (Text), BOOLEAN (True/False), CURRENCY (Fixed Decimal Number), and DATETIME (Date, Time, etc.)
Converting a Date datatype to Integer,
Example: convert = CONVERT(DATE(1997,12,23), INTEGER)
DAX Currency Math Function
The currency function returns the result as a currency data type after evaluating the argument.
Syntax: CURRENCY(<value>)
- value: Any DAX expression that only produces a single scalar value and must be evaluated exactly once before any subsequent operations.
Example: currency = CURRENCY(23.44)
DAX Degrees Math Function
The degrees function converts a given angle from radians into degrees.
Syntax: DEGREES (angle)
- angle: The angle that you want to convert, in radians.
Example: degrees = DEGREES(PI())
DAX Divide Math Function
This function divides and provides a different result, or BLANK () when dividing by 0, as appropriate.
Syntax: DIVIDE(<numerator>, <denominator> [, <alternate result>])
- numerator: The division factor or number.
- denominator: The number that must be divided by.
- alternate result: The value returned when a division by zero goes wrong (optional). In the absence of a value, the default is BLANK ().
Example: divide = DIVIDE(234,12)
divideDAX Even Math Function
The number is given back and rounded to the next even integer. This function can be used to process objects that come in pairs. A packing box, for instance, can accommodate rows of one or two things. When the number of objects, rounded to the nearest two, equals the crate's capacity, the crate is considered full.
Syntax: EVEN (number)
- number: The number you wish to round.
Example: even = EVEN(23.44)
DAX Exp Math Function
Returns e to the power of the specified number. The natural logarithm's base, 2.71828182845904, is equal to the constant e.
Syntax: EXP(<number>)
- number: The base e was affected by the exponent. The natural logarithm's base, 2.71828182845904, is equal to the constant.
Example: exp = EXP(4)
expDAX Fact Math Function
The series 1*2*3*...*, ending in the provided number, is returned as the factorial of the supplied number.
Syntax: FACT(<number>)
- number: The positive, non-negative number that you want to compute the factorial for.
Example: fact = FACT(5)
DAX Floor Math Function
Brings a number down to its nearest multiple of importance by rounding it down toward zero.
Syntax: FLOOR(<number>, <significance>)
- number: The number you intend to round.
- significance: The number you wish to round to in multiples. Both the quantity and the significance of the arguments must be either positive or negative.
Example: floor = FLOOR(245.33,0.3)
DAX GCD Math Function
This function returns the largest common divisor of two or more integers. The biggest integer that divides both numbers 1 and 2 without leaving a residual is known as the greatest common divisor.
Syntax: GCD (number1, [number2], ...)
- number1: Number 1 is necessary; all other numbers are optional. values from 1 to 255. All values that are not integers are trimmed.
Example: gcd = GCD(122,4)
DAX INT Math Function
Round and gives a number down to the nearest integer.
Syntax: INT(<number>)
- number: The number you intend to round.
Example: int = INT(55.44)
intDAX Iso.Ceiling Math Function
Increases a number by rounding it up to the nearest integer or significant multiple.
Syntax: ISO.CEILING(<number> [, <significance>])
- number: The number you wish to round, or a mention of a column of numbers.
- significance: The significant multiple you want to round to (optional). For instance, enter 1 to round to the nearest integer. The amount is rounded up to the next integer if the unit of importance is not given.
Example: iso.ceiling = ISO.CEILING(2.999,0.2)
DAX LCM Math Function
The least frequent multiple of integers is returned. The smallest positive integer that is a multiple of all the integer parameters (number1, number2, etc.) is known as the least common multiple. To add fractions with various denominators, use LCM.
Syntax: LCM (number1, [number2], ...)
- number1: Number 1 is necessary; all other numbers are optional. For numbers between 1 and 255, you wish to find the least frequent multiple. Value is shortened if it is not an integer.
Example: lcm = LCM(45,56)
DAX LN Math Function
Gives a number's natural logarithm. Based on the value of the constant e, natural logarithms (2.71828182845904).
Syntax: LN(<number>)
- number: The positive integer whose natural logarithm you seek.
Example: ln = LN(0.004)
lnDAX LOG Math Function
Gives a number's logarithm to the base you specify.
Syntax: LOG(<number>, <base>)
- number: The positive number you're looking for the logarithm for.
- base: The logarithm's base. When left out, the base is 10.
Example: log = LOG(1035,3)
DAX LOG10 Math Function
Gives the base-10 logarithm of a number.
Syntax: LOG10(<number>)
- number: A positive number for which the base-10 logarithm is desired.
Example: log10 = LOG10(1035)
DAX MOD Math Function
Returns the leftover amount after dividing a number by a divisor. The sign of the result is always the same as the divisor.
Syntax: MOD(<number>, <divisor>)
- number: The figure for which you need to calculate the divisional remainder.
- divisor: The figure you want to divide by.
Example: mod = MOD(1035,5)
DAX MROUND Math Function
Gives you a number with the necessary multiple rounded off.
Syntax: MROUND(<number>, <multiple>)
- number: The number to round.
- multiple: The significant multiple that you wish to round the number to.
Example: mround = MROUND(455.6,5)
DAX ODD Math Function
The number is given back, rounded to the nearest odd integer.
Syntax: ODD (number)
- number: The number to round.
Example: odd = ODD(455.6)
DAX Pi Math Function
Gives Pi in decimal form, 3.14159265358979, with a 15-digit precision.
Syntax: PI()
Example: pi = PI()
DAX Power Math Function
Returns the value of a number raised to a power of exponent.
Syntax: POWER(<number>, <power>)
- number: Any real number can serve as the base number.
- power: The higher exponent from the base number.
Example: power = POWER(5,3)
DAX Quotient Math Function
The division is done, and just the integer part of the result is returned. When you want to throw away the divisional leftover, use this function.
Syntax: QUOTIENT(<numerator>, <denominator>)
- numerator: The division factor, or dividend.
- denominator: The divisor, or quantity by which to divide.
Example: quotient = QUOTIENT(234,3)
DAX Radians Math Function
Converts an angle from degrees to radians.
Syntax: RADIANS (angle)
- angle: An angle that you want to convert from degrees (Required)
Example: radians = RADIANS(90)
DAX Rand Math Function
Returns a uniformly distributed random number that is higher than or equal to 0 and less than 1. Every time the cell containing this function is recalculated, a different number is returned.
Syntax: RAND ()
To avoid mistakes like division by zero, the RAND function cannot return a value of zero.
Example: rand = RAND()
DAX RandBetween Math Function
Gives you a random number that falls between the two values you provide.
Syntax: RANDBETWEEN(<bottom>, <top>)
- bottom: The smallest integer that will be returned by the function.
- top: The function will return the greatest possible integer.
Example: randbetween = RANDBETWEEN(23,44)
DAX Round Math Function
Rounds a value to the specified number of digits.
- The number is rounded to the specified number of decimal places if num digits are higher than zero.
- The number is rounded to the nearest integer if the num digit is 0.
- The number is rounded to the left of the decimal point if the num digits are less than 0.
Syntax: ROUND(<number>, <num_digits>)
- number: The value you intend to round.
- num_digits: The number of digits you wish to round to. A value of zero rounds to the nearest integer; a negative value rounds digits to the left of the decimal point.
Example: round = ROUND(23.44444,4)
DAX RoundDown Math Function
Rounds a number in the direction of zero.
- The value in number is rounded down to the provided number of decimal places if the num digits are more than zero.
- The value in number is rounded to the nearest integer if the num digits are 0.
- The value in number is rounded to the left of the decimal point if the num digits are less than 0.
Syntax: ROUNDDOWN(<number>, <num_digits>)
- number: The real value you intend to be rounded down.
- num_digits: The number of digits you wish to round to. A value of zero rounds to the nearest integer; a negative value rounds digits to the left of the decimal point.
Example: round down = ROUNDDOWN(23.44444,1)
DAX RoundUp Math Function
It rounds a number up, away from 0 (zero).
- The number is rounded up to the provided number of decimal places if the num digits are larger than 0 (zero).
- The number is rounded up to the nearest integer if the num digit is 0.
- The number is rounded to the left of the decimal point if the num digits are less than 0.
Syntax: ROUNDUP(<number>, <num_digits>)
- number: The real value you intend to round up.
- num_digits: The number of digits you wish to round to. If the num digits are 0 or omitted, the number is rounded to the nearest integer when a negative value rounds to the left of the decimal point.
Example: round up = ROUNDUP(23.44444,1)
DAX Sign Math Function
Identifies a number's sign, a calculation's outcome, or a value in a column. If the number is positive, the function returns 1, if it is zero, it returns 0, and if it is negative, it returns -1.
Syntax: SIGN(<number>)
- number: A column of numbers, a real number, or a phrase that results in a number.
Example: sign = SIGN(23.44444)
DAX Sqrt Math Function
Gives the square root of a number.
Syntax: SQRT(<number>)
- number: A column of numbers, the number for which you want the square root or a phrase that evaluates to a number.
Example: sqrt = SQRT(23.44444)
DAX SqrtPi Math Function
Gives the (number times pi) square root.
Syntax: SQRTPI (number)
- number: Required, the value that pi is multiplied by.
Example: sqrtpi = SQRTPI(23.44444)
DAX Trunc Math Function
Removes the fractional or decimal portion of a number to convert it to an integer.
Syntax: TRUNC(<number>, <num_digits>)
- number: The value you want to truncate.
- num_digits: A value indicating the truncation's precision; if omitted, 0 (zero)
Example: truncate = TRUNC(45.0000345,6)
Similar Reads
Power BI Tutorial | Learn Power BI
Power BI is a Microsoft-powered business intelligence tool that helps transform raw data into interactive dashboards and actionable insights. It allow users to connect to various data sources, clean and shape data and visualize it using charts, graphs and reports all with minimal coding.Itâs widely
5 min read
Introduction & Setup the Power BI
What is Business Intelligence?
Business Intelligence is the talk of a new changing and growing world that can be defined as a set of concepts and methodologies to improve decision-making in business through the use of facts and fact-based systems. The Goal of Business Intelligence is to improve decision-making in business ideas a
6 min read
Power BI - Introduction
Power BI is a tool from Microsoft that helps transform raw data into valuable insights. It allows you to create interactive reports and dashboards making it easier to understand complex data. Whether youâre a business analyst, data scientist or anyone working with data, Power BI helps simplify this
5 min read
Power BI - Key Components
Power BI is a data visualization and business intelligence tool created by Microsoft. It helps us to turn raw data into easy to understand reports and interactive dashboards which non-technical users can also create easily. In this article, we will understand its key components.Components of Power B
4 min read
Power BI - Practical Applications
A feature of Microsoft Office 365 called Power BI gives business users access to insights from their data. Users of the software can visualize information using a range of tools, such as graphs and diagrams. In other words, Power BI serves as a link between your data and the individual who will ulti
7 min read
How to Install Power BI on Windows?
Power BI: Power BI is an analytical software which is developed by Microsoft. BI means business intelligence. It is available only for Windows operating system. It was first released in 2011 and its stable release was in 2021. It is used for a variety of purposes like data visualization, data mining
2 min read
Power BI - Data Sources and its type
In this article, we will be looking at Data Sources and their type in Power BI. Power BI is an interactive data visualization software developed by Microsoft with a primary focus on business intelligence. It is part of the Microsoft Power Platform. The Power BI data sources that are available are as
2 min read
Differences Between Microsoft Power BI and SSRS
SSRS and Power BI are both Business Intelligence (BI) tools that are made to show data to users in a easy to understand way. Even though Microsoft made both but they are designed for different types of users and used for different purposes. In this article, we will see the differences between Power
3 min read
Power BI Free vs Power BI Pro vs Power BI Premium
Power BI is a tool developed by Microsoft to help users connect to various data sources and create interactive reports. It allows you to visualize your data in a way that makes it easier to see patterns and insights. Power BI was built using some of the features from Excel, like Power Query, Power P
4 min read
The Power BI Query Editor
Power BI - How to edit in Power BI App?
Power BI is a data visualization application that lets you connect, transform and find insights into the most pressing matters of your business. It helps in sourcing your data and creating visual dashboards, KPIs, and reports by editing the data as per your concerns. You can collaborate, share and i
8 min read
Power BI - DAX Date Functions
Knowing when and how to use DAX functions helps you build strong, high-performance data models and analysis large amounts of data in Power BI. In this article, weâll explore important DAX Date Functions to help you manage dates in Power BITo begin load a dataset that contains date fields. Here we ar
3 min read
Power BI - How to Add Conditional Columns?
Creating insightful reports often requires data to be organized and categorized based on specific conditions. Conditional columns helps change or add values in a column based on logic you define. In this article, weâll learn how to create conditional columns using Power Query Editor.Step 1: Open Pow
2 min read
DAX Aggregate Functions in Power BI
Microsoft Power BI is a tool that helps businesses to analyze data and create interactive reports and visualizations. It can connect to various data sources such as Excel, SQL databases, cloud services, etc and can perform aggregate functions on them for analysis. In this article we will learn about
6 min read
Power BI - Excel Integration
Power BI and Excel integration combine the data visualization and reporting capabilities of Power BI with the spreadsheet functionality of Excel. By linking the two users can analyze and manipulate Power BI data directly within Excel. This is vey useful tool for those who prefer working in Excel but
3 min read
PowerBI Dash Board Visualisation
Power BI - Dashboard Introduction
Power BI allows users to convert data into visuals and graphics to explore and analyze data, collaborate on interactive dashboards and reports. A Power BI dashboard is one page that shows different charts and visuals all designed to explore and interact with your data easily.How to Create a Simple D
5 min read
Power BI - Dashboard Actions
A single page, or palette, is what is referred to as a Power BI dashboard and it employs visualizations to convey a story. As it can only fit on one page, a well-designed dashboard delivers only the essentials of the scenario. Dashboards are a feature of the Power BI service. When utilizing Power BI
8 min read
Power BI - Create a Stacked Bar Chart
Sometimes there is a range of scenarios where it is hard to convey the information in a table and written format. Under such situations, Bar charts make things easier and more understandable. What are Stacked Charts & Bar Charts? Stacked charts are a sort of bar chart which are multiple-series i
3 min read
Power BI - How to add Reports to Dashboards?
Power BI Dashboards help you to view and summarize important information from your reports in one place. You can add an entire report or just specific parts like charts, cards or tables to a dashboard. You can also mix multiple reports into one dashboard. In this article, weâll learn how to add full
3 min read
Power BI - Report Level Filters
Filters in Power BI sort data and knowledge based on some selected criteria. That is, you'll select particular fields or values within fields and view only the information related to them. as an example, you've got a dataset related to a store's sales. Now, using the filters you'll filter out unnece
2 min read
Power BI - How to Format Matrix?
Power Bi is an extensively used operation as it helps in storing, assaying, calculating, etc. data. Power Bi contains numerous functions that are used to maintain and show data in a presentable way. Matrix is one of the Power Bi is handy functions, it's a collection of figures that are arranged into
4 min read
Power BI - Slicer
Slicers are the interactive filters used to format and analyze the parts of the data more effectively. We can create a slicer easily with 4 steps, as shown in the later stage of the article. We have various options to format slicers, we can change the value of the alt text, title, etc. We can also a
6 min read
Power BI - How to Format a Card?
Cards in Power BI help us display a certain value, corresponding to different dynamic scenarios. For example, want to know the total population of the world, and the population of a certain country by a slicer, all can be achieved by cards in Power BI. In this article, we will learn how to format a
5 min read
Power BI - Format Multi-Row Card
Multi-Row cards in Power BI help us display multiple values, corresponding to different dynamic scenarios. For example, want to know the total population of the world, the average world's economy, annual total deaths all in a single card, to achieve such tasks we use multi-row cards. Under the field
6 min read
Power BI - How to Create a Map?
A map only locates the location as a data point, whether it's a continent, country, state, city, etc. Maps can also be plotted with the help of latitude and longitude. Maps can be useful, to know the current running business over different geographical locations. For example, if geeks for geeks want
3 min read
Power BI - How to Format Map
Maps are the visualizations that display dataset values on the basis of location. The location can be state, country, city, pin code, etc. We have various options to format maps. We can apply different styles to map, add legends, customize the colors of the bubbles, etc. In this article, we will lea
6 min read
Power BI - How to Create a Treemap?
TreeMap in Power BI is the hierarchical chart, which is used to show the parent and child data distribution. TreeMap is shown by a group of rectangles, these rectangles are segregated on the basis of the category. The larger numeric values are present at the top, and lower numeric values are present
3 min read
Power BI - How to Format Tree Map?
Tree Maps are the visualizations that display dataset values in the form of a hierarchical rectangle-cut format. We prefer Tree Map whenever we want to show large hierarchical data, in a limited space, with a better color combination, we have treemap as our first choice, also when we have a correlat
6 min read
Connect Power BI Desktop with Power BI Service
Power BI Desktop is the system version of Power BI present in the local system, It is downloaded as a free application. The comprehensive report authoring tool for report designers is Power BI Desktop. You can connect to many data sources through the desktop and then turn the data into a data model.
5 min read
Power BI - Create a Table
Tables are a way to represent data in the form of rows and columns. By default, the Power BI desktop creates a table itself, whenever data is dragged under the visualizations section. But, here will learn how to create the table manually, if not created by Power BI, we will also look at some aggrega
2 min read
Power BI - How to Format Table?
Sometimes we want to show data in tabular format for that we have two options here one is a table and another one is a matrix. This article deals with Tables in Power BI. You can use this dataset to follow along with this article. The topic that will be covered in the articles are: Creating a simple
4 min read
Power BI - Create a Stacked Column Chart
Sometimes there is a range of scenarios where it is hard to convey the information in the form of a table and written format. Under such situations, Column charts make things easier and more understandable. Let's understand what is stacked column chart is and how to create a stacked column chart. Wh
3 min read
Power BI - How to Format Stacked Column Chart?
Formatting is a technique to enhance the looks of the charts by giving a cosmetic appearance to the chart title and chart legend. Titles are given to the X and Y axis to add clarity for the user. Formatting commands are applied to a chart for the identical reason they're applied to a worksheet: they
5 min read
Power BI - Create 100% Stacked Column Chart
A 100% stacked column chart is formed by bar lines, which show the proportion of each data value in the form of percentages. This chart is generally, used when we want to match the ratios of different column values, with different fields. For example, if we want to compare the salary and bonus of ea
4 min read
Power BI - Create 100% Stacked Bar Chart
Power BI 100% stacked bar chart is used to display the relative percentage of multiple data series in stacked bars, where each stacked bar's total (cumulative) always equals 100%. In other words, A 100% stacked bar chart in power bi is a type designed to show the relative chance of multiple data ser
3 min read
Power BI - Format Stacked Bar Chart
Formatting is a technique to enhance the looks of the charts by giving a cosmetic appearance to the chart title and chart legend. Titles are given to the X and Y axis to add clarity for the user. Formatting commands are applied to a chart for the identical reason they're applied to a worksheet. they
4 min read
Power BI - How to Create a Stacked Area Chart
A stacked area chart is formed by combining the line chart, with the shaded area under that line. This chart is generally, used when we want to see the trends, that which field is performing better, in a particular time frame. For example, considering the stock prices of different companies, in the
3 min read
Power BI - Format Area Chart
An area chart is a combination of a line chart with an area covered below the line. We could add a secondary y-axis, with just 2 mouse clicks Power BI. We have various options to format area charts, we can change the value of the x-axis, y-axis, its title, etc. We can also add various options like s
11 min read
Power BI - Create a Radial Gauge Chart
A radial Gauge chart looks similar to a speedometer of a Car. A gauge chart is a half-circle chart, which tells whether a target is achieved or not. Gauge charts are generally used to measure the progress toward a goal. In this article, we will learn how to create a radial gauge chart in Power BI. C
4 min read
Power BI - Explain Key Performance Indicators (KPIs) dashboards
The KPIs evaluate an associationâs performance in different areas by assessing quantifiable measure values. In businesses, KPIs play an essential part as visual cues that indicate growth by assessing values and measurable pretensions. A KPI always has a base value or measure which is estimated again
2 min read
Power BI _ Format KPIs Chart
Power BI _ Format Clustered Bar Chart
Power BI - How to Create a Waterfall Chart?
A waterfall chart shows a running value as quantities are added or subtracted. Itâs helpful to visualize how an underlying value is influenced by a series of positive and negative changes. The columns are usually encoded using color so that you can quickly identify increments and decrements. In a wa
2 min read
Power BI - Format Waterfall Chart
A waterfall chart is generally used to check the trend in the data, with its ups and downs at particular intervals. We have various options to format waterfall charts, we can change the value of the x-axis, y-axis, its title, etc. We can also add various options like Breakdown, Gridlines, and data l
8 min read
Power BI - Create a Filled Map
A filled map is similar to a map in Power BI. A filled map, allocates a certain area of the location mentioned, while a map only locates the location as a data point, whether it's a continent, country, etc. Filled maps can be useful, to know the exact boundaries of a location, whether it is a countr
3 min read
Power BI - Format Filled Map
Filled Maps are the visualizations that display dataset values on the basis of location with the area allocated for that region. The difference between a map and a filled map is that a map only shows the data points for the selected location, but a filled map selects the area portion of that locatio
6 min read
Power BI - How to Create a Scatter Chart?
A Scatter chart is a chart, representing data points, spread on a graph, to show the column values. It helps us analyze and summarise the data very efficiently. We can also add legends, bubble sizes, and animations to this chart. This graph is widely used because it can show better visualizations in
4 min read
Power BI - Format Scatter Chart
Scatter charts are data distribution charts, in the form of data points. We have various options to format scatter charts, we can change the value of the x-axis, y-axis, its title, etc. We can also add various options like zoom slider, markers, and grid lines in the scatter chart. In this article, w
8 min read
Showing Trends with Line Charts
Power BI - Format Line Chart
A Line chart shows data in the form of a line. It is generally used when we have to show, continuous data graphically. We could add a secondary y-axis, with just 2 mouse clicks in Power BI. We have various options to format line charts, we can change the value of the x-axis, y-axis, its title, etc.
10 min read
Power BI - How to Create a Shape Map?
A shape map is similar to a map in Power BI. A shape map, shows the comparison between different regions, using different color shades, on a given value. For example, suppose the number of corona cases is higher in Uttar Pradesh, with respect to Haryana. In that case, the Uttar Pradesh state will be
4 min read
Power BI - Format Donut Chart
A donut chart is a circular chart, which could present values of a dataset in the form of slices of a donut. The donut chart is exactly the same as a pie chart, the only difference is pie chart has a circle, but a donut chart has a hole in the circle. We have various options to format donut charts,
6 min read
Power BI - Format Pie Chart
A pie chart is a circular chart, which could present values of a dataset in the form of slices of a circle. Â We have various options to format pie charts, we can change the value of the legends, rotation, detail labels, etc. In this article, we will learn how to format a pie chart in Power BI and ex
6 min read
Power BI - Format Ribbon Chart
A ribbon chart is a type of column chart, with ribbons joining each other. If the legends property is not added to the ribbon chart, then the ribbon chart is the same as the column chart. If we add legends to our chart, then a string of ribbons will be joined for each legend's values, showing the ra
8 min read
Power BI - Create a R Script Visual
An R script is different from R visuals. It helps transform our data into statistical analysis and machine learning algorithms on our datasets. It creates beautiful charts, with statistical measures. To make R Script Visual, we need to have some prerequisites i.e. Installing R in the System, and Che
4 min read
Power BI - Format Line and Stacked Column Chart
A Line and Stacked Column chart is a combination of a line chart with a stacked column chart. We could add a secondary y-axis, with just 2 mouse clicks in Power BI. We have various options to format line and stacked column charts, we can change the value of the x-axis, y-axis, its title, etc. We can
11 min read
Power BI - Format Line and Clustered Column Chart
A Line and Clustered Column chart is a combination of a line chart with a clustered(segregated) column chart. We could add a secondary y-axis, with just 2 mouse clicks in Power BI. We have various options to format line and clustered column charts, we can change the value of the x-axis, y-axis, its
11 min read
DAX Introduction
Power BI - How to Create Calculated Columns?
Power BI Desktop there are two data modification options known as Calculated Table and Calculated Column. These two options can add a whole new table referring to existing tables and a column to any existing table using existing columns of the respective table. Calculated Columns and Calculated Tabl
3 min read
Power BI- Functions
DAX is a very powerful feature provided with Power BI from Microsoft. DAX stands for Data Analysis Expressions. As we can understand from the name DAX consists of the functions and expressions that are used to manipulate the data or the reports. These expressions help to perform analysis of the data
5 min read
Power BI- DAX Window Function
The filter and value functions in DAX are some of the most complex and powerful and differ greatly from Excel functions. The lookup functions work by using tables and relationships, like a database. The filtering functions let you manipulate data context to create dynamic calculations. The WINDOW fu
5 min read
Power BI - DAX Logical Functions
Data analysis expressions, or DAX, are formulas or expressions used in calculations and data analysis. These expressions contain a variety of different functions, operators, and constants that are all evaluated collectively as a single formula to yield the desired outcomes (value or values). DAX for
5 min read
Power BI - DAX Information Functions
Data Analysis Expressions, or DAX, are formulas or expressions that are used for calculations and data analysis. These expressions consist of a number of different functions, operators, and constants that are all evaluated together as a single formula to produce the desired results (value or values)
5 min read
Power BI - DAX TEXT Functions
DAX is a collection of operators, constants, and functions that can be used to compute and return one or more values in an expression or formula. To put it simply, DAX gives you the ability to create new data from data that already exist in your model. DAX Text Functions Tables and columns can be us
11 min read
Power BI- DAX Index Function
Data filtering is one of the most widely used data analysis techniques. Data filtering eliminates the clutter and makes important information visible to everyone, whether they are financial experts, data scientists, marketers, or salespeople. Filtered data often results in a subset of data that may
4 min read
Power BI - DAX Trigonometric Functions
Microsoft Power BI uses the scripting language Data Analysis Expressions (DAX) to create calculated columns, measurements, and custom tables. It offers a number of useful functions that help create formulas and expressions that can be applied to a number of data analysis issues. You can develop reli
5 min read
Power BI - DAX COUPDAY Financial Function
Data Analysis Expressions is referred to as DAX in Power BI. It is an expressive language for formulas that are also utilized in Power BI and other visualization tools. It is utilized to create many kinds of formulae. We have all been utilizing various Excel functions in MS Excel for a very long tim
5 min read
Power BI - DAX Depreciation Functions
Formulas that do financial computations, including net present value and rate of return, use financial functions in DAX. These features are comparable to those found in Microsoft Excel's financial features. Microsoft added about 50 additional DAX capabilities to Power BI in July 2020. Some users may
9 min read
Power BI - Distinct() function
Data Analysis Expressions (DAX) include many functions that return a table rather than a value. The table isn't displayed but is used to provide input to other functions. For example, you can retrieve a table and then count the distinct values in it or calculate dynamic sums across filtered tables o
2 min read
Power BI - DAX Math Functions
A robust set of cloud-based business analytics tools called Power BI makes it simple to combine data from many sources, analyze and visualize information, and share insights. The Mathematical functions in Excel are quite similar to those in Data Analysis Expressions (DAX). Many functions in the Data
11 min read
Power BI - DAX Counting Functions
Many functions in the Data Analysis Expressions (DAX) return a table rather than a value. The table is used as an input for other functions, but it is not displayed. For instance, get a table and count the number of distinct values it contains, or you could compute dynamic sums over filtered tables
3 min read
Power BI- DAX Bitwise Functions
To generate formulas and expressions in Excel data models for Power BI, Analysis Services, and Power Pivot, Data Analysis Expressions (DAX), a group of functions and operators, can be combined. Data Analysis Expression is a feature of the Power BI toolset that enables business analysts to maximize t
2 min read
Top 30 Power BI Interview Questions and Answers (For Fresher & Experienced)
Power BI is a powerful business analytics tool developed by Microsoft, renowned for its interactive visualizations and business intelligence capabilities. It's widely adopted across various industries, making it a valuable skill for professionals in data analysis and reporting. Top companies like Mi
15+ min read