<?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: Add fixed value to variable values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3492969#M133772</link>
    <description>&lt;P&gt;It sounds like you want to create a DAX formula in Power BI or another similar data analysis tool to add fixed values to variable values for different companies. In DAX, you can use the SUMX function to iterate through a table and apply calculations. Here's a general outline of how you can create a DAX formula for this purpose:&lt;/P&gt;&lt;P&gt;Assuming you have a table with columns like "Company," "FixedValue," and "VariableValue," you can create a calculated column or a measure to calculate the sum of fixed and variable values per company.&lt;/P&gt;&lt;P&gt;Here's an example of how you can create a calculated column:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TotalValue = [FixedValue] + [VariableValue]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This formula creates a new column called "TotalValue" that adds the "FixedValue" and "VariableValue" for each row in your data.&lt;/P&gt;&lt;P&gt;If you want to calculate the total sum of these values for each company, you can create a measure using SUMX and SUMMARIZE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TotalSum = SUMX(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;YourTableName,&lt;BR /&gt;YourTableName[Company]&lt;BR /&gt;),&lt;BR /&gt;[FixedValue] + [VariableValue]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replace "YourTableName" with the actual name of your table. This measure calculates the sum of fixed and variable values for each company in your table.&lt;/P&gt;&lt;P&gt;You can then use this measure in your reports to display the total sum of values per company.&lt;/P&gt;&lt;P&gt;Please adapt the DAX formula to your specific data structure and requirements. If you have a different data model or need more specific guidance, provide more details about your data structure, and I can assist you further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Oct 2023 06:13:11 GMT</pubDate>
    <dc:creator>123abc</dc:creator>
    <dc:date>2023-10-24T06:13:11Z</dc:date>
    <item>
      <title>Add fixed value to variable values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3491902#M133706</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hello, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I need to add the fixed values ​​per company to the variable values ​​per company. I ask for help in creating the DAX formula. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Grateful.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 16:40:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3491902#M133706</guid>
      <dc:creator>amgelain</dc:creator>
      <dc:date>2023-10-23T16:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add fixed value to variable values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3492969#M133772</link>
      <description>&lt;P&gt;It sounds like you want to create a DAX formula in Power BI or another similar data analysis tool to add fixed values to variable values for different companies. In DAX, you can use the SUMX function to iterate through a table and apply calculations. Here's a general outline of how you can create a DAX formula for this purpose:&lt;/P&gt;&lt;P&gt;Assuming you have a table with columns like "Company," "FixedValue," and "VariableValue," you can create a calculated column or a measure to calculate the sum of fixed and variable values per company.&lt;/P&gt;&lt;P&gt;Here's an example of how you can create a calculated column:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TotalValue = [FixedValue] + [VariableValue]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This formula creates a new column called "TotalValue" that adds the "FixedValue" and "VariableValue" for each row in your data.&lt;/P&gt;&lt;P&gt;If you want to calculate the total sum of these values for each company, you can create a measure using SUMX and SUMMARIZE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TotalSum = SUMX(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;YourTableName,&lt;BR /&gt;YourTableName[Company]&lt;BR /&gt;),&lt;BR /&gt;[FixedValue] + [VariableValue]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replace "YourTableName" with the actual name of your table. This measure calculates the sum of fixed and variable values for each company in your table.&lt;/P&gt;&lt;P&gt;You can then use this measure in your reports to display the total sum of values per company.&lt;/P&gt;&lt;P&gt;Please adapt the DAX formula to your specific data structure and requirements. If you have a different data model or need more specific guidance, provide more details about your data structure, and I can assist you further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 06:13:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3492969#M133772</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-10-24T06:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add fixed value to variable values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3494935#M133879</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Your opinion was important for me to finalize the formula.&lt;/P&gt;&lt;P&gt;Grateful.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 22:36:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3494935#M133879</guid>
      <dc:creator>amgelain</dc:creator>
      <dc:date>2023-10-24T22:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add fixed value to variable values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3495967#M133928</link>
      <description>&lt;P&gt;You are wellcome.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 09:35:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-fixed-value-to-variable-values/m-p/3495967#M133928</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-10-25T09:35:47Z</dc:date>
    </item>
  </channel>
</rss>

