<?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 measure query required of below shared expressions. kindly help me! in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4375455#M173717</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure1 = SUMX(YourTable, [ABC] * [DEF] / 100)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure2 = &lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUMX(&lt;BR /&gt;YourTable, &lt;BR /&gt;IF([AAA] &amp;gt; 1, [AAA] / 100, [AAA]) * [XYZ]&lt;BR /&gt;),&lt;BR /&gt;SUMX(&lt;BR /&gt;YourTable, &lt;BR /&gt;IF([BBB] &amp;gt; 1, [BBB] / 100, [BBB]) * [XYZ]&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;If this helped, please give Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or mark it as a Solution &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;.&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Best regards,&lt;BR /&gt;&lt;STRONG&gt;Kedar&lt;/STRONG&gt;&lt;EM&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Connect on LinkedIn&lt;/A&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 22 Jan 2025 10:25:35 GMT</pubDate>
    <dc:creator>Kedar_Pande</dc:creator>
    <dc:date>2025-01-22T10:25:35Z</dc:date>
    <item>
      <title>Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373577#M173641</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;Good Afternoon!&lt;BR /&gt;Kindly help me for DAX measure query of below 2 expressions.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;Sum([ABC] * [DEF] / 100)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;Sum((case when [AAA]&amp;gt;1 then [AAA] / 100 else [AAA] end) * [XYZ]) / Sum((case when [BBB]&amp;gt;1 then [BBB] / 100 else [BBB] end) * [XYZ])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I required measures due to need to call this final values in the card visual. please help me.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 12:00:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373577#M173641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-21T12:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373639#M173646</link>
      <description>&lt;P&gt;Can you post some sample data and the expected output ?&lt;BR /&gt;&lt;BR /&gt;You can try the following to get started :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;YourMeasur1 = SUMX(Tbl,(Tbl[ABC]*Tbl[DEF])/100)

YourMeasure2 =

Var _val1= SUMX(Tbl,If(Tbl[AAA]&amp;gt;1,Tbl[AAA]/100,Tbl[AAA])*Tbl[XYZ])

Var _val2= SUMX(Tbl,If(Tbl[AAA]&amp;gt;1, Tbl[AAA]/100,Tbl[AAA])*Tbl[XYZ])

RETURN DIVIDE(_val1/_val2 )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 12:51:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373639#M173646</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2025-01-21T12:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373655#M173649</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Hi!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure 1:&lt;/P&gt;
&lt;P&gt;Measure1 = SUMX(&lt;BR /&gt;TableName,&lt;BR /&gt;([ABC] * [DEF]) / 100&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure 2:&lt;/P&gt;
&lt;P&gt;Measure2 = &lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUMX(&lt;BR /&gt;TableName,&lt;BR /&gt;(IF([AAA] &amp;gt; 1, [AAA] / 100, [AAA]) * [XYZ])&lt;BR /&gt;),&lt;BR /&gt;SUMX(&lt;BR /&gt;TableName,&lt;BR /&gt;(IF([BBB] &amp;gt; 1, [BBB] / 100, [BBB]) * [XYZ])&lt;BR /&gt;),&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's ok, please accept the answer as solution&lt;/P&gt;
&lt;P&gt;BBF&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 12:59:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4373655#M173649</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2025-01-21T12:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4375191#M173704</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&lt;SPAN&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Could you please confirm if BeaBF&amp;nbsp;and SachinNandanwar&amp;nbsp;'s responses have resolved your issue? If they have, you might consider accepting their responses as the solution, which will help others find answers more quickly.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Logically, their responses are the most effective and concise solutions. However, since we are unsure whether [AAA], [XYZ], and [BBB] in your requirement refer to measures or fields, if they are measures, the provided solutions might have some limitations. Therefore, I hope you can confirm whether their responses are effective. If not, please share your data structure, the composition of your measures, and answer my questions. This will help us brainstorm more effectively for your issue.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;We recommend using GitHub or SharePoint to share your files with us.When uploading a file, please be careful to delete sensitive information. Looking forward to your response.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For questions about uploading data, you can try the following links:&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;&lt;SPAN&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Of course, if you have any new discoveries or questions, please feel free to get in touch with us.&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 08:06:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4375191#M173704</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-22T08:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4375455#M173717</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure1 = SUMX(YourTable, [ABC] * [DEF] / 100)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure2 = &lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUMX(&lt;BR /&gt;YourTable, &lt;BR /&gt;IF([AAA] &amp;gt; 1, [AAA] / 100, [AAA]) * [XYZ]&lt;BR /&gt;),&lt;BR /&gt;SUMX(&lt;BR /&gt;YourTable, &lt;BR /&gt;IF([BBB] &amp;gt; 1, [BBB] / 100, [BBB]) * [XYZ]&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; &lt;STRONG&gt;If this helped, please give Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or mark it as a Solution &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;.&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Best regards,&lt;BR /&gt;&lt;STRONG&gt;Kedar&lt;/STRONG&gt;&lt;EM&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank"&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Connect on LinkedIn&lt;/A&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 Jan 2025 10:25:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4375455#M173717</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2025-01-22T10:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure query required of below shared expressions. kindly help me!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4377367#M173793</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try this dax:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Measure_1&lt;/STRONG&gt; = SUMX('TableName', 'TableName'[ABC] * 'TableName'[DEF] / 100)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Measure_2&lt;/STRONG&gt; = DIVIDE(&lt;BR /&gt;SUMX('TableName', IF('TableName'[AAA] &amp;gt; 1, 'TableName'[AAA] / 100, 'TableName'[AAA]) * 'TableName'[XYZ]),&lt;BR /&gt;SUMX('TableName', IF('TableName'[BBB] &amp;gt; 1, 'TableName'[BBB] / 100, 'TableName'[BBB]) * 'TableName'[XYZ])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 08:36:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-query-required-of-below-shared-expressions-kindly/m-p/4377367#M173793</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-01-23T08:36:37Z</dc:date>
    </item>
  </channel>
</rss>

