<?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 How to apply filters on these three measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2992379#M100718</link>
    <description>&lt;P&gt;I am trying to apply filter such as &lt;STRONG&gt;FacilityCode&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;in {"850", "845"}&lt;/STRONG&gt; in all my current three DAX measures, and I am having difficulties.&lt;/P&gt;&lt;P&gt;I do not want to create another duplicate tables just to apply this filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have three measures that have structure like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[1] Ave Census Var =&lt;BR /&gt;calculate (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECTEDVALUE('&lt;STRONG&gt;&lt;FONT color="#993300"&gt;vw_census_trend_MonthToDate_2&lt;/FONT&gt;&lt;/STRONG&gt;'[Ave Census])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;- COUNT('&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;'[ID])&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;[2] Skill Mix % Budget divide =&lt;BR /&gt;Divide(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#0000FF"&gt;[Skill Mix % Budget ID Total]&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; COUNTROWS(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Skill Mix % Budget ID Total&lt;/FONT&gt; =&lt;BR /&gt;calculate (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;COUNTROWS(&lt;FONT color="#008000"&gt;&lt;STRONG&gt;vw_daily_census_budget&lt;/STRONG&gt;&lt;/FONT&gt;),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;[PayerName]) in {"A", "M", "S", "I"}&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;[3]&lt;/P&gt;&lt;P&gt;Occupancy Budget % Total =&lt;BR /&gt;calculate(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Divide(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#800080"&gt; [Budget ID Total]&lt;/FONT&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; calculate(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sum(&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;vw_occupancy&lt;/FONT&gt;&lt;/STRONG&gt;[Capacity])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;/P&gt;&lt;P&gt;-------------------&lt;BR /&gt;&lt;FONT color="#800080"&gt;Budget ID Total&lt;/FONT&gt; = Count(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;[ID]) + 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All three tables have &lt;STRONG&gt;FacilityCode&lt;/STRONG&gt;&amp;nbsp;column.&lt;/P&gt;&lt;P&gt;Three tables:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;vw_census_trend_MonthToDate_2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;&lt;FONT color="#008000"&gt;&lt;FONT color="#FF6600"&gt;vw_occupancy&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;Thanks for help.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2022 00:15:38 GMT</pubDate>
    <dc:creator>JustinDoh1</dc:creator>
    <dc:date>2022-12-29T00:15:38Z</dc:date>
    <item>
      <title>How to apply filters on these three measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2992379#M100718</link>
      <description>&lt;P&gt;I am trying to apply filter such as &lt;STRONG&gt;FacilityCode&lt;/STRONG&gt;&amp;nbsp;&lt;STRONG&gt;in {"850", "845"}&lt;/STRONG&gt; in all my current three DAX measures, and I am having difficulties.&lt;/P&gt;&lt;P&gt;I do not want to create another duplicate tables just to apply this filter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have three measures that have structure like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[1] Ave Census Var =&lt;BR /&gt;calculate (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECTEDVALUE('&lt;STRONG&gt;&lt;FONT color="#993300"&gt;vw_census_trend_MonthToDate_2&lt;/FONT&gt;&lt;/STRONG&gt;'[Ave Census])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;- COUNT('&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;'[ID])&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;[2] Skill Mix % Budget divide =&lt;BR /&gt;Divide(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#0000FF"&gt;[Skill Mix % Budget ID Total]&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; COUNTROWS(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Skill Mix % Budget ID Total&lt;/FONT&gt; =&lt;BR /&gt;calculate (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;COUNTROWS(&lt;FONT color="#008000"&gt;&lt;STRONG&gt;vw_daily_census_budget&lt;/STRONG&gt;&lt;/FONT&gt;),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;[PayerName]) in {"A", "M", "S", "I"}&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;[3]&lt;/P&gt;&lt;P&gt;Occupancy Budget % Total =&lt;BR /&gt;calculate(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Divide(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#800080"&gt; [Budget ID Total]&lt;/FONT&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; calculate(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sum(&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;vw_occupancy&lt;/FONT&gt;&lt;/STRONG&gt;[Capacity])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;/P&gt;&lt;P&gt;-------------------&lt;BR /&gt;&lt;FONT color="#800080"&gt;Budget ID Total&lt;/FONT&gt; = Count(&lt;STRONG&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/STRONG&gt;[ID]) + 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All three tables have &lt;STRONG&gt;FacilityCode&lt;/STRONG&gt;&amp;nbsp;column.&lt;/P&gt;&lt;P&gt;Three tables:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;vw_census_trend_MonthToDate_2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;&lt;FONT color="#008000"&gt;vw_daily_census_budget&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;&lt;FONT color="#008000"&gt;&lt;FONT color="#FF6600"&gt;vw_occupancy&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;Thanks for help.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 00:15:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2992379#M100718</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2022-12-29T00:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply filters on these three measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2992598#M100734</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296339" data-lia-user-login="JustinDoh1" class="lia-mention lia-mention-user"&gt;JustinDoh1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can update the formula of those three measures as below:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;[1] Ave Census Var&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Ave Census Var =
CALCULATE (
    SELECTEDVALUE ( 'vw_census_trend_MonthToDate_2'[Ave Census] ),
    FILTER (
        'vw_census_trend_MonthToDate_2',
        'vw_census_trend_MonthToDate_2'[FacilityCode] IN { "850", "845" }
    )
)
    - CALCULATE (
        COUNT ( 'vw_daily_census_budget'[ID] ),
        FILTER (
            'vw_daily_census_budget',
            'vw_daily_census_budget'[FacilityCode] IN { "850", "845" }
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;[2] Skill Mix % Budget divide&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Skill Mix % Budget ID Total =
CALCULATE (
    COUNTROWS ( vw_daily_census_budget ),
    FILTER (
        vw_daily_census_budget,
        vw_daily_census_budget[PayerName]
            IN { "A", "M", "S", "I" }
            &amp;amp;&amp;amp; vw_daily_census_budget[FacilityCode] IN { "850", "845" }
    )
)

Skill Mix % Budget divide =
DIVIDE (
    [Skill Mix % Budget ID Total],
    CALCULATE (
        COUNTROWS ( vw_daily_census_budget ),
        FILTER (
            vw_daily_census_budget,
            vw_daily_census_budget[FacilityCode] IN { "850", "845" }
        )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;STRONG&gt;[3]&amp;nbsp;Occupancy Budget % Total&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Budget ID Total =
CALCULATE (
    COUNT ( vw_daily_census_budget[ID] ),
    FILTER (
        vw_daily_census_budget,
        vw_daily_census_budget[FacilityCode] IN { "850", "845" }
    )
) + 0

Occupancy Budget % Total =
DIVIDE (
    [Budget ID Total],
    CALCULATE (
        SUM ( vw_occupancy[Capacity] ),
        FILTER ( vw_occupancy, vw_occupancy[FacilityCode] IN { "850", "845" } )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;If the above one can't help you get the expected result, please provide some&amp;nbsp;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&amp;nbsp;in your table&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;(&lt;STRONG&gt;&lt;I&gt;exclude&amp;nbsp;&lt;/I&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;sensitive&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;&lt;I&gt;data&lt;/I&gt;&lt;/STRONG&gt;) with&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN&gt;Text&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;SPAN&gt;It is better&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&lt;/FONT&gt;if you can share a&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;SPAN&gt;simplified&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=04%7C01%7Cv-yiruan%40microsoft.com%7C4f580813734d4a8355b008da16f6e91a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637847547341062885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;amp;sdata=YJvujige2YITXKbKED9JieQm5LBdf%2F3IYPM4ggdiijQ%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 04:20:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2992598#M100734</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-29T04:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply filters on these three measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2994059#M100825</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Thank you very much! Your feedback was very clear and perfect.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 23:51:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-apply-filters-on-these-three-measures/m-p/2994059#M100825</guid>
      <dc:creator>JustinDoh1</dc:creator>
      <dc:date>2022-12-29T23:51:01Z</dc:date>
    </item>
  </channel>
</rss>

