Results for "DAX"

6 / 11 posts

Search: DAX
SQL

DAX (Data Analysis Expressions) Operators and Data Type in Power BI

Here's the list of DAX operators in a table format: Arithmetic Operators Operator Description Example + Addition = + - Subtraction = - * Multiplication = *…

business business-intelligence database
Match in titleMatch in tagsMatch in content
Mar 19, 2026 2 min read
Power BI

How to Create table in Power BI using Dax

ROW: The ROW function in DAX creates a single row table with the specified columns and values. ROW(columnName1, value1, [columnName2, value2], ...) Si…

Power BI
Match in titleMatch in contentMatch in code
Mar 19, 2026 1 min read
Power BI

Basic of DAX query

// How to check null ISBLANK(EmployeeDetails[DateofLeaving]) //if condition IF(ISBLANK(EmployeeDetails[DateofLeaving]),TODAY(),EmployeeDetails&#0…

IF ISBLANK ISBLANK()
Match in titleMatch in tags
Mar 19, 2026 1 min read
Power BI

USERELATIONSHIP function In Power

USERELATIONSHIP: This is particularly useful when you have multiple relationships between the same tables but only one can be active at a time. By default,…

DAX marketing Power BI
Match in tagsMatch in content
Mar 19, 2026 2 min read
Power BI

ALLSELECTED Function in Power BI

ALLSELECTED : The ALLSELECTED function in DAX is used to return all the rows in a table, or all the values in a column . This is particularly useful in sce…

Power BI
Match in content
Mar 19, 2026 1 min read
Power BI

Date Time in Power BI

In Power BI and DAX, the CALENDAR() and CALENDARAUTO() functions are used to generate a table of dates. These functions are particularly useful for creatin…

calendar google journal
Match in content
Mar 19, 2026 2 min read