<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DAX command in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720539#M180793</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This a HUGE topic&lt;/P&gt;&lt;P&gt;so before to start, I would suggest you to start by following this learning path from Microsoft&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/training/paths/dax-power-bi/" target="_blank"&gt;https://learn.microsoft.com/en-us/training/paths/dax-power-bi/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DAX stands for Data Analysis Expressions. It's a formula language used in Power BI,to create custom calculations. These calculations go beyond what you can achieve with simple aggregations (like sums or averages) of raw data.&lt;/P&gt;&lt;P&gt;Here's a breakdown of the core capabilities of DAX:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;1. Calculated Columns&lt;/STRONG&gt;&lt;/U&gt;&lt;BR /&gt;Calculated columns are new columns that you add to your existing tables in Power BI's data model. The values in these columns are calculated row by row based on a DAX formula you define.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Deriving new attributes: Create columns like "Full Name" by concatenating "First Name" and "Last Name", or "Age Group" based on a "Birth Date" column.&lt;BR /&gt;Performing row-level calculations: Calculate profit margin for each sale item by dividing "Profit" by "Sales Amount".&lt;BR /&gt;Conditional logic: Use IF statements to categorize data. For example, mark an order as "Large" if the quantity is above a certain threshold.&lt;BR /&gt;Referencing other columns within the same row: Easily access values from other columns in the current row to perform calculations.&lt;BR /&gt;Example:&lt;BR /&gt;Profit Margin = DIVIDE([Profit], [Sales Amount])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Measures&lt;/STRONG&gt;&lt;BR /&gt;Measures are dynamic calculations that are performed at the time of query, based on the context of the visualization. Unlike calculated columns, measures don't consume memory by storing values in your data model. They are the backbone of most analytical reports in Power BI.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Aggregations: The most common use. You can sum, average, count, find min/max, and more.&lt;BR /&gt;Time Intelligence: DAX offers a rich set of functions to analyze data over time, such as year-over-year growth, month-to-date sales, or rolling averages.&lt;BR /&gt;TOTALYTD, SAMEPERIODLASTYEAR, DATEADD, DATESBETWEEN, etc.&lt;BR /&gt;Context Transition: This is a more advanced concept, but it allows measures to change their evaluation context from row context (which calculated columns primarily operate in) to filter context. This is crucial for more complex calculations.&lt;BR /&gt;Filtering and Iteration: Functions like CALCULATE are incredibly powerful, allowing you to modify filter context for a calculation. Iterating functions (ending with X, like SUMX, AVERAGEX) allow you to perform row-by-row calculations and then aggregate the results.&lt;BR /&gt;Key Performance Indicators (KPIs): Define targets and track performance against them.&lt;BR /&gt;Handling Blanks/Errors: Functions like DIVIDE and IFERROR help manage potential issues in calculations.&lt;BR /&gt;Example:&lt;BR /&gt;Total Sales = SUM('Sales'[Sales Amount])&lt;BR /&gt;Sales Last Year = CALCULATE([Total Sales], SAMEPERIODLASTYEAR('Date'[Date]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3. Data Modeling Enhancements&lt;/STRONG&gt;&lt;BR /&gt;DAX functions contribute to a more robust and flexible data model.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Relationships: While relationships are typically set up visually, DAX functions can be used in some advanced scenarios (e.g., virtual relationships with TREATAS).&lt;BR /&gt;Row-Level Security (RLS): DAX expressions are used to define security roles that restrict which rows of data a user can see. This is done by creating a filter expression in the security role.&lt;BR /&gt;[Region] = USERPRINCIPALNAME() (to show data only for the user's region)&lt;BR /&gt;Key DAX Concepts to Understand:&lt;BR /&gt;To fully leverage DAX's capabilities, it's essential to grasp these concepts:&lt;/P&gt;&lt;P&gt;Evaluation Context: This is perhaps the most challenging but crucial concept. It refers to the "environment" in which a DAX expression is evaluated. There are two main types:&lt;BR /&gt;Row Context: Applies to calculated columns and iterating functions. The formula is evaluated row by row.&lt;BR /&gt;Filter Context: Applies to measures. The calculation is performed based on the filters applied by visuals, slicers, and other DAX functions.&lt;BR /&gt;Calculated vs. Stored: Understanding the difference between calculated columns (stored) and measures (calculated on the fly) is vital for performance and model efficiency.&lt;BR /&gt;Table and Column References: How to correctly reference tables and columns in your formulas.&lt;BR /&gt;Scalar vs. Table Functions: Some functions return a single value (scalar), while others return a table.&lt;BR /&gt;Iterating Functions (SUMX, AVERAGEX, etc.): These functions iterate over each row of a table and perform a calculation, then aggregate the results. They are critical for complex row-level calculations within measures.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Where to go from here?&lt;BR /&gt;As a beginner, I recommend focusing on:&lt;/P&gt;&lt;P&gt;Basic Calculated Columns: Start with simple concatenations or arithmetic operations.&lt;BR /&gt;Basic Measures: Learn SUM, AVERAGE, COUNTROWS, etc.&lt;BR /&gt;CALCULATE function: This is arguably the most important DAX function. Once you start to understand CALCULATE and filter context, your DAX capabilities will skyrocket.&lt;BR /&gt;Time Intelligence Functions: These are incredibly useful for almost any business reporting.&lt;BR /&gt;There are many great resources available online, including Microsoft's official documentation, DAX guides by experts like Alberto Ferrari and Marco Russo (SQLBI), and numerous YouTube tutorials.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 04:19:27 GMT</pubDate>
    <dc:creator>Cookistador</dc:creator>
    <dc:date>2025-06-05T04:19:27Z</dc:date>
    <item>
      <title>DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720480#M180792</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a somewhat of a beginner in PowerBI. I am just starting to learn about the DAX function command. Can someone help explain all of the capabilities of this? Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 02:54:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720480#M180792</guid>
      <dc:creator>cingram11</dc:creator>
      <dc:date>2025-06-05T02:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720539#M180793</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This a HUGE topic&lt;/P&gt;&lt;P&gt;so before to start, I would suggest you to start by following this learning path from Microsoft&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/training/paths/dax-power-bi/" target="_blank"&gt;https://learn.microsoft.com/en-us/training/paths/dax-power-bi/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DAX stands for Data Analysis Expressions. It's a formula language used in Power BI,to create custom calculations. These calculations go beyond what you can achieve with simple aggregations (like sums or averages) of raw data.&lt;/P&gt;&lt;P&gt;Here's a breakdown of the core capabilities of DAX:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;1. Calculated Columns&lt;/STRONG&gt;&lt;/U&gt;&lt;BR /&gt;Calculated columns are new columns that you add to your existing tables in Power BI's data model. The values in these columns are calculated row by row based on a DAX formula you define.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Deriving new attributes: Create columns like "Full Name" by concatenating "First Name" and "Last Name", or "Age Group" based on a "Birth Date" column.&lt;BR /&gt;Performing row-level calculations: Calculate profit margin for each sale item by dividing "Profit" by "Sales Amount".&lt;BR /&gt;Conditional logic: Use IF statements to categorize data. For example, mark an order as "Large" if the quantity is above a certain threshold.&lt;BR /&gt;Referencing other columns within the same row: Easily access values from other columns in the current row to perform calculations.&lt;BR /&gt;Example:&lt;BR /&gt;Profit Margin = DIVIDE([Profit], [Sales Amount])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Measures&lt;/STRONG&gt;&lt;BR /&gt;Measures are dynamic calculations that are performed at the time of query, based on the context of the visualization. Unlike calculated columns, measures don't consume memory by storing values in your data model. They are the backbone of most analytical reports in Power BI.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Aggregations: The most common use. You can sum, average, count, find min/max, and more.&lt;BR /&gt;Time Intelligence: DAX offers a rich set of functions to analyze data over time, such as year-over-year growth, month-to-date sales, or rolling averages.&lt;BR /&gt;TOTALYTD, SAMEPERIODLASTYEAR, DATEADD, DATESBETWEEN, etc.&lt;BR /&gt;Context Transition: This is a more advanced concept, but it allows measures to change their evaluation context from row context (which calculated columns primarily operate in) to filter context. This is crucial for more complex calculations.&lt;BR /&gt;Filtering and Iteration: Functions like CALCULATE are incredibly powerful, allowing you to modify filter context for a calculation. Iterating functions (ending with X, like SUMX, AVERAGEX) allow you to perform row-by-row calculations and then aggregate the results.&lt;BR /&gt;Key Performance Indicators (KPIs): Define targets and track performance against them.&lt;BR /&gt;Handling Blanks/Errors: Functions like DIVIDE and IFERROR help manage potential issues in calculations.&lt;BR /&gt;Example:&lt;BR /&gt;Total Sales = SUM('Sales'[Sales Amount])&lt;BR /&gt;Sales Last Year = CALCULATE([Total Sales], SAMEPERIODLASTYEAR('Date'[Date]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3. Data Modeling Enhancements&lt;/STRONG&gt;&lt;BR /&gt;DAX functions contribute to a more robust and flexible data model.&lt;/P&gt;&lt;P&gt;Capabilities:&lt;/P&gt;&lt;P&gt;Relationships: While relationships are typically set up visually, DAX functions can be used in some advanced scenarios (e.g., virtual relationships with TREATAS).&lt;BR /&gt;Row-Level Security (RLS): DAX expressions are used to define security roles that restrict which rows of data a user can see. This is done by creating a filter expression in the security role.&lt;BR /&gt;[Region] = USERPRINCIPALNAME() (to show data only for the user's region)&lt;BR /&gt;Key DAX Concepts to Understand:&lt;BR /&gt;To fully leverage DAX's capabilities, it's essential to grasp these concepts:&lt;/P&gt;&lt;P&gt;Evaluation Context: This is perhaps the most challenging but crucial concept. It refers to the "environment" in which a DAX expression is evaluated. There are two main types:&lt;BR /&gt;Row Context: Applies to calculated columns and iterating functions. The formula is evaluated row by row.&lt;BR /&gt;Filter Context: Applies to measures. The calculation is performed based on the filters applied by visuals, slicers, and other DAX functions.&lt;BR /&gt;Calculated vs. Stored: Understanding the difference between calculated columns (stored) and measures (calculated on the fly) is vital for performance and model efficiency.&lt;BR /&gt;Table and Column References: How to correctly reference tables and columns in your formulas.&lt;BR /&gt;Scalar vs. Table Functions: Some functions return a single value (scalar), while others return a table.&lt;BR /&gt;Iterating Functions (SUMX, AVERAGEX, etc.): These functions iterate over each row of a table and perform a calculation, then aggregate the results. They are critical for complex row-level calculations within measures.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Where to go from here?&lt;BR /&gt;As a beginner, I recommend focusing on:&lt;/P&gt;&lt;P&gt;Basic Calculated Columns: Start with simple concatenations or arithmetic operations.&lt;BR /&gt;Basic Measures: Learn SUM, AVERAGE, COUNTROWS, etc.&lt;BR /&gt;CALCULATE function: This is arguably the most important DAX function. Once you start to understand CALCULATE and filter context, your DAX capabilities will skyrocket.&lt;BR /&gt;Time Intelligence Functions: These are incredibly useful for almost any business reporting.&lt;BR /&gt;There are many great resources available online, including Microsoft's official documentation, DAX guides by experts like Alberto Ferrari and Marco Russo (SQLBI), and numerous YouTube tutorials.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 04:19:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720539#M180793</guid>
      <dc:creator>Cookistador</dc:creator>
      <dc:date>2025-06-05T04:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720571#M180795</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;BR /&gt;&lt;BR /&gt;DAX is the formula language used in Power BI, Excel Power Pivot, and SQL Server Analysis Services.Think of it as the engine that powers calculations and analytics in your reports. While it looks a bit like Excel formulas at first glance, it’s actually much more powerful—built specifically for data modeling, custom aggregations, and context-aware analysis.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;What Can DAX Do?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;DAX is designed to work across tables, manage relationships, respect filters and slicers, and even handle complex time-based analysis. Here’s what it can help you do:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1.Create Calculated Columns&lt;/STRONG&gt;&lt;BR /&gt;You can create new columns in your tables using existing data. For example, combining a first and last name:&lt;/P&gt;
&lt;P&gt;FullName = Employees[FirstName] &amp;amp; " " &amp;amp; Employees[LastName]&lt;/P&gt;
&lt;P&gt;Calculated columns are great when you need to enrich your data model.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2.Build Measures for Dynamic Aggregation&lt;/STRONG&gt;&lt;BR /&gt;Unlike calculated columns, measures change based on slicers, filters, or visuals. For example:&lt;/P&gt;
&lt;P&gt;TotalSales = SUM(Sales[SalesAmount])&lt;BR /&gt;AverageDiscount = AVERAGE(Sales[Discount])&lt;/P&gt;
&lt;P&gt;These are best for dynamic KPIs, performance metrics, and dashboard insights.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;3.Understand Row and Filter Context&lt;/STRONG&gt;&lt;BR /&gt;DAX is context-sensitive. It adjusts your calculations depending on:&lt;/P&gt;
&lt;P&gt;Row context (the current row in a table)&lt;BR /&gt;Filter context (active filters/slicers)&lt;BR /&gt;Evaluation context (the combo of all contexts)&lt;/P&gt;
&lt;P&gt;A powerful function here is CALCULATE, which changes filter context:&lt;/P&gt;
&lt;P&gt;US_Sales = CALCULATE(SUM(Sales[SalesAmount]), Geography[Country] = "USA")&lt;/P&gt;
&lt;P&gt;This lets you isolate specific segments of data in your measures.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;4.Time Intelligence Made Easy&lt;/STRONG&gt;&lt;BR /&gt;DAX includes built-in time intelligence to analyze trends over time—like year-to-date or same period last year:&lt;/P&gt;
&lt;P&gt;SalesYTD = TOTALYTD(SUM(Sales[SalesAmount]), Dates[Date])&lt;BR /&gt;PreviousMonthSales = CALCULATE(SUM(Sales[SalesAmount]), PREVIOUSMONTH(Dates[Date]))&lt;/P&gt;
&lt;P&gt;tip: You’ll need a proper Date Table (marked as a date table in the model) for these functions to work correctly.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;5.Leverage Relationships Between Tables&lt;/STRONG&gt;&lt;BR /&gt;DAX works seamlessly with Power BI’s data model and table relationships. You can:&lt;/P&gt;
&lt;P&gt;Bring in values from a related table using RELATED&lt;BR /&gt;Aggregate across related rows using RELATEDTABLE&lt;/P&gt;
&lt;P&gt;Example:&lt;BR /&gt;Category = RELATED(Products[Category])&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;6.Create Advanced KPIs &amp;amp; Logic&lt;/STRONG&gt;&lt;BR /&gt;You can go beyond simple sums with conditional logic, percentage calculations, and rankings:&lt;/P&gt;
&lt;P&gt;SalesPct = DIVIDE([TotalSales], CALCULATE([TotalSales], ALL(Sales)))&lt;/P&gt;
&lt;P&gt;With functions like IF, SWITCH, FILTER, and RANKX, you can design business rules directly into your reports—like highlighting top performers, flagging low sales, or calculating growth rates.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;7.Work with Table Functions&lt;/STRONG&gt;&lt;BR /&gt;DAX also supports functions that return entire tables. These are useful for modeling, virtual tables, or advanced filtering:&lt;/P&gt;
&lt;P&gt;SUMMARIZE, ADDCOLUMNS – to create groupings&lt;BR /&gt;VALUES – to get unique values&lt;BR /&gt;FILTER – to define row subsets&lt;BR /&gt;CROSSJOIN, UNION – to merge or combine tables&lt;/P&gt;
&lt;P&gt;These are essential when building calculated tables or performing complex analysis.&lt;BR /&gt;&lt;BR /&gt;DAX Learning Resources&lt;/P&gt;
&lt;P&gt;If you want to learn more or go deeper:&lt;/P&gt;
&lt;UL data-start="5368" data-end="5808"&gt;
&lt;LI data-start="5368" data-end="5453"&gt;
&lt;P data-start="5370" data-end="5453"&gt;&lt;A class="" href="https://learn.microsoft.com/en-us/dax/" target="_new" rel="noopener" data-start="5373" data-end="5453"&gt;Official DAX Documentation (Microsoft)&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="5454" data-end="5522"&gt;
&lt;P data-start="5456" data-end="5522"&gt;&lt;A class="" href="https://dax.guide/" target="_new" rel="noopener" data-start="5459" data-end="5522"&gt;DAX Guide – Searchable Reference by SQLBI&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="5454" data-end="5522"&gt;&lt;A class="" href="https://learn.microsoft.com/en-us/training/paths/dax-power-bi/" target="_new" rel="noopener" data-start="294" data-end="405"&gt;Use DAX in Power BI Desktop - Microsoft Learn:&lt;/A&gt;&lt;/LI&gt;
&lt;LI data-start="5644" data-end="5757"&gt;
&lt;P data-start="5646" data-end="5757"&gt;&lt;A class="" style="font-family: inherit; background-color: #ffffff;" href="https://daxstudio.org/" target="_new" rel="noopener" data-start="5763" data-end="5808"&gt;Download DAX Studio&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="5760" data-end="5808"&gt;&lt;BR /&gt;&lt;SPAN&gt;If the response has addressed your query, please&lt;/SPAN&gt;&lt;STRONG style="font-family: inherit;"&gt;&amp;nbsp;Accept it as a solution&amp;nbsp;&lt;/STRONG&gt;and give a&lt;STRONG style="font-family: inherit;"&gt;&amp;nbsp;'Kudos'&lt;/STRONG&gt;&amp;nbsp;so other members can easily find it&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Tejaswi.&lt;BR /&gt;Community Support Team&amp;nbsp;&lt;/P&gt;
&lt;UL data-start="5368" data-end="5808"&gt;
&lt;LI style="list-style-type: none;" data-start="5758" data-end="5808"&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 05 Jun 2025 04:33:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4720571#M180795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-05T04:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4721366#M180823</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;Welcome to the world of Power BI and DAX—you're on an exciting journey. DAX, which stands for &lt;STRONG data-start="101" data-end="130"&gt;Data Analysis Expressions&lt;/STRONG&gt;, is a formula language used in Power BI, Excel Power Pivot, and SQL Server Analysis Services (SSAS) to create &lt;STRONG data-start="241" data-end="280"&gt;custom calculations and expressions&lt;/STRONG&gt; on your data model. As a beginner, think of DAX as similar to Excel formulas but designed for data modeling and analytics. With DAX, you can perform a wide range of calculations such as &lt;STRONG data-start="467" data-end="491"&gt;creating new columns&lt;/STRONG&gt;, &lt;STRONG data-start="493" data-end="520"&gt;measures (aggregations)&lt;/STRONG&gt;, and &lt;STRONG data-start="526" data-end="547"&gt;calculated tables&lt;/STRONG&gt;, which help you summarize, filter, and manipulate data based on business logic. DAX is especially powerful for working with &lt;STRONG data-start="672" data-end="712"&gt;relationships across multiple tables&lt;/STRONG&gt;, enabling you to calculate things like &lt;STRONG data-start="752" data-end="777"&gt;year-over-year growth&lt;/STRONG&gt;, &lt;STRONG data-start="779" data-end="797"&gt;running totals&lt;/STRONG&gt;, &lt;STRONG data-start="799" data-end="818"&gt;dynamic filters&lt;/STRONG&gt;, or &lt;STRONG data-start="823" data-end="849"&gt;row-level calculations&lt;/STRONG&gt;. It includes functions for &lt;STRONG data-start="877" data-end="885"&gt;math&lt;/STRONG&gt;, &lt;STRONG data-start="887" data-end="895"&gt;text&lt;/STRONG&gt;, &lt;STRONG data-start="897" data-end="910"&gt;date/time&lt;/STRONG&gt;, &lt;STRONG data-start="912" data-end="925"&gt;filtering&lt;/STRONG&gt;, &lt;STRONG data-start="927" data-end="949"&gt;logical operations&lt;/STRONG&gt;, and &lt;STRONG data-start="955" data-end="976"&gt;time intelligence&lt;/STRONG&gt; (like calculating values for "same period last year" or "year to date"). While it can seem complex at first—especially with concepts like &lt;STRONG data-start="1115" data-end="1126"&gt;context&lt;/STRONG&gt; (row context and filter context)—with practice, DAX becomes an essential tool for building advanced and meaningful insights in Power BI. Don’t worry about mastering it all at once; start with simple calculations and gradually move into more advanced scenarios as your confidence grows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 11:26:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4721366#M180823</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-06-05T11:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4723597#M180929</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;&lt;A href="https://youtu.be/3gpXMMRJjw8?si=EftFGjaSQrFIBqj-" target="_blank"&gt;https://youtu.be/3gpXMMRJjw8?si=EftFGjaSQrFIBqj-&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 20:18:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4723597#M180929</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-06-06T20:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4724991#M180982</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please &lt;STRONG&gt;Accept it as a solution&lt;/STRONG&gt; so that other community members can find it easily.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;BR /&gt;Tejaswi.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 05:47:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4724991#M180982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-09T05:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4730082#M181193</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and &lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;. This will be helpful for other community members who have similar problems to solve it faster.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Tejaswi.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jun 2025 11:03:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4730082#M181193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-12T11:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4733537#M181318</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1286046" data-lia-user-login="cingram11" class="lia-mention lia-mention-user"&gt;cingram11&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope the information provided has been useful. Please let me know if you need further clarification or would like to continue the discussion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your question has been answered, please “Accept as Solution” and Give “&lt;STRONG&gt;Kudos”&lt;/STRONG&gt; so others with similar issues can easily find the resolution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;Tejaswi.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 08:22:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command/m-p/4733537#M181318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-20T08:22:23Z</dc:date>
    </item>
  </channel>
</rss>

