<?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: Somases com varíavel dinâmica in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3675563#M142684</link>
    <description>&lt;P&gt;Jianpeng, thanks for your answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;actually, the solution is a little bit more complex... i will show you my original "problem":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;basically, i have a filter that have to find the square footage (ABL) between an range&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but, the power BI logic search is individually by each SUC (its a name gave to the storage that is occupied). so when this filter is applied, i dont find the result, because this storage has multiple SUCs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which is 3 SUCs that combined have 176m².&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so, in that case, the filter works only when i put the minimun range in 48m², which make the final analysys wrong...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thats why in trying to create an "fit square footage" column. The fórmula need to SUM the Square Footage(ABL) in total for the following month, so i can use as a value in my table and correctely be filtered in the selected range.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Feb 2024 12:45:49 GMT</pubDate>
    <dc:creator>andreruiz7</dc:creator>
    <dc:date>2024-02-02T12:45:49Z</dc:date>
    <item>
      <title>Somases com varíavel dinâmica</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3673270#M142517</link>
      <description>&lt;P&gt;preciso executar a soma de valores correspondentes a ele próprio, dentro do referido mês.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;como a metragem e contabilizada individualmente por SUC, preciso de uma fórmula que faça com que estes valores sejam os seus totais naquele mês.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;exemplo: qual a metragem total da Loja X dentro do mês de Dezembro?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;lembrando que o valor tanto do "nome fantasia" e "mes ano" é variável, então deve ser feita a leitura individualmente, linha a linha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;é possível fazer dentro do Power BI?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 15:26:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3673270#M142517</guid>
      <dc:creator>andreruiz7</dc:creator>
      <dc:date>2024-02-01T15:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Somases com varíavel dinâmica</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3674485#M142612</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="684038" data-lia-user-login="andreruiz7" class="lia-mention lia-mention-user"&gt;andreruiz7&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm happy to answer your questions. We can use &lt;STRONG&gt;measure and slicer&lt;/STRONG&gt; to find the total area of a certain product in a certain month.&lt;/P&gt;
&lt;P&gt;Sample data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Click here to create measure:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The DAX formula of measure is as follows:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE(SUMX('Tabelle1','Tabelle1'[ABL Ajustada]+'Tabelle1'[ABL(m2)]),'Tabelle1')
&lt;/LI-CODE&gt;
&lt;P&gt;We can use card visual to reflect the total area:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Dynamically calculate the total area of the asdf store in December through slicer:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The dynamic calculation results are as follows: For example, the total area of the asdf store in December =969.2+108+969.2+84+969.2+108=3207.6:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I have provided my PBIX file below. If this helps you, that would be great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C02%7Cv-jianpengli%40microsoft.com%7Cbbee82146bc543cd99ce08dc2397b87d%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638424381922315703%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=2P9UYVhc%2BZDgLBL%2BrHh2KOgWyhKeKv0M9xmMcxhMBcg%3D&amp;amp;reserved=0" target="_blank"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Jianpeng Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 02:45:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3674485#M142612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-02T02:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Somases com varíavel dinâmica</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3675563#M142684</link>
      <description>&lt;P&gt;Jianpeng, thanks for your answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;actually, the solution is a little bit more complex... i will show you my original "problem":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;basically, i have a filter that have to find the square footage (ABL) between an range&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but, the power BI logic search is individually by each SUC (its a name gave to the storage that is occupied). so when this filter is applied, i dont find the result, because this storage has multiple SUCs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which is 3 SUCs that combined have 176m².&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so, in that case, the filter works only when i put the minimun range in 48m², which make the final analysys wrong...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thats why in trying to create an "fit square footage" column. The fórmula need to SUM the Square Footage(ABL) in total for the following month, so i can use as a value in my table and correctely be filtered in the selected range.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 12:45:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3675563#M142684</guid>
      <dc:creator>andreruiz7</dc:creator>
      <dc:date>2024-02-02T12:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Somases com varíavel dinâmica</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3683788#M143078</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;someone can help me?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 18:01:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Somases-com-var%C3%ADavel-din%C3%A2mica/m-p/3683788#M143078</guid>
      <dc:creator>andreruiz7</dc:creator>
      <dc:date>2024-02-06T18:01:40Z</dc:date>
    </item>
  </channel>
</rss>

