<?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: How to limit one measure based on the other measure for total numbers in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553204#M72345</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick response! I appreciated it. I haven't use the code.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jun 2022 14:54:16 GMT</pubDate>
    <dc:creator>SLucky</dc:creator>
    <dc:date>2022-06-01T14:54:16Z</dc:date>
    <item>
      <title>How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551795#M72234</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to limit the total number of "2022 Labor Expense" based on non-blank values in "2019 Labor Expense".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Example we have data as below. Left hand side is the original view with company breakdown. When I add the filter for non-blank of "2019 Labor Expense", the total of "2022 Labor Expense" changes to -$18,783 which is the number I want.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is if I remove "code" variable (it is company name) to show the total, and add filter for "2019 Labor Expense" to the view, the total of&amp;nbsp;"2022 Labor Expense" stays the same as -$35,565. How can I make it to&amp;nbsp;-$18,783? Thanks!!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 04:05:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551795#M72234</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T04:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551851#M72236</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is the date from the same table or you have a date table?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 05:28:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551851#M72236</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T05:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551876#M72238</link>
      <description>&lt;P&gt;Date and Code are columns from two different tables. The other two are measures&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 05:35:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551876#M72238</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T05:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551978#M72245</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;2022 Labor Expense Filterd =
VAR Codes2019 =
    SELECTCOLUMNS (
        FILTER ( TableName, RELATED ( 'Date'[Year] ) = 2019 ),
        "@Code", TableName[Code]
    )
RETURN
    CALCULATE (
        [2022 Labor Expense],
        FILTER ( TableName, TableName[Code] IN Codes2019 )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 01 Jun 2022 06:26:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2551978#M72245</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T06:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553179#M72341</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81077" data-lia-user-login="Pragati11" class="lia-mention lia-mention-user"&gt;Pragati11&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the problem. I would like to see the total of 2022 labor expense but filtered with individual company that has value in 2019 labor expense. The final report only has one line. Format sample see below(2022 labor expense should be -$18,783). Thank you!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 14:39:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553179#M72341</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T14:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553184#M72342</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Move conversation here. I would like to see the total of 2022 labor expense but filtered with individual company that has value in 2019 labor expense. The final report only has one line. Format sample see below(2022 labor expense should be -$18,783). Thank you!&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;</description>
      <pubDate>Wed, 01 Jun 2022 14:40:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553184#M72342</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T14:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553188#M72343</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what the measure was intended to do. However I discovered an error in the code, I will edit now but what results did you get using this code?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 14:46:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553188#M72343</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T14:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553204#M72345</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick response! I appreciated it. I haven't use the code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 14:54:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553204#M72345</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T14:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553206#M72346</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok then try this one&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;2022 Labor Expense Filterd =
VAR Codes2019 =
    SELECTCOLUMNS (
        CALCULATETABLE ( TableName, 'Date'[Year] = 2019 ),
        "@Code", TableName[Code]
    )
RETURN
    CALCULATE (
        [2022 Labor Expense],
        FILTER ( TableName, TableName[Code] IN Codes2019 )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 01 Jun 2022 14:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553206#M72346</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T14:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553239#M72349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I checked the company code. Most of the companies have value in some days of 2019 while in some day they don't. If I would like to see data for all days in 2022, I cannot use the fixed list of company code.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:10:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553239#M72349</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T15:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553277#M72351</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you explain step by step how we're supposed to reach to this number (&amp;nbsp;&lt;SPAN&gt;-$18,783 )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:26:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553277#M72351</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T15:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553306#M72353</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I am not saying clear.&lt;/P&gt;&lt;P&gt;I&amp;nbsp;&lt;SPAN&gt;have three tables: a data table, a company code table and a labor expense table.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;2022 labor expense: it is the sum of the labor expense from labor expense table.&lt;/P&gt;&lt;P&gt;2019 labor expense: it is a dataadd measure from 2022 labor expense variable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to see the total of 2022 labor expense in any date but only calculate the company where it has value in the same day in 2019.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's say we have 10 companies in total. On 1/1/2019, 5 companies have value in 2019 labor expense variable. Then the total of 1/1/2022 labor expense will be the sum expense of those 5 companies. On 5/1/2019, if only 2 companies have value in 2019 labor expense, the total of 5/1/2022 labor expense will sum labor expense of those 2 companies.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:37:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553306#M72353</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T15:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553313#M72354</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great. Can you please&lt;/P&gt;&lt;P&gt;1. Share a screenshot of your data model with the relationships?&lt;/P&gt;&lt;P&gt;2. Share the code of both 2019 and 2022 measures?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:43:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553313#M72354</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T15:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553330#M72355</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Table relationship: calendar table and property table don't have any relationship. Labor expense table has 1:many for calendar table(Date) and property table(Code).&lt;/P&gt;&lt;P&gt;2. 2022 Labor expense =&amp;nbsp;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Labor Data'[expense]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2019 Labor expense = calculate([2022 Labor expense], dateadd(&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Calendar Dates'[Date]&lt;/SPAN&gt;&lt;SPAN&gt;, -3, year))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:50:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553330#M72355</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T15:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553374#M72357</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for asking too many questions but how do you filter for the year 2022? Are you using a slicer?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 16:09:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553374#M72357</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T16:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553381#M72358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I am using a slicer.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 16:14:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553381#M72358</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T16:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553390#M72361</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just found that the relationship I mentioned above is wrong. Sorry.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Labor expense table has many:1 for calendar table(Date) and property table(Code)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 16:17:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553390#M72361</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T16:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553430#M72367</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please try&lt;/P&gt;&lt;PRE&gt;2022 Labor Expense Filterd =
VAR Codes2019 =
    SELECTCOLUMNS (
        CALCULATETABLE ( 'Labor Data', DATEADD ( 'Calendar Dates'[Date], -3, YEAR ) ),
        "@Code", 'Labor Data'[Code]
    )
RETURN
    CALCULATE (
        [2022 Labor Expense],
        FILTER ( 'Company Code', 'Company Code'[Code] IN Codes2019 )
    )&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Jun 2022 16:42:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553430#M72367</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-01T16:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553515#M72379</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 17:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2553515#M72379</guid>
      <dc:creator>SLucky</dc:creator>
      <dc:date>2022-06-01T17:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to limit one measure based on the other measure for total numbers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2556789#M72612</link>
      <description>&lt;P&gt;is it good now&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="382658" data-lia-user-login="SLucky" class="lia-mention lia-mention-user"&gt;SLucky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 05:35:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-limit-one-measure-based-on-the-other-measure-for-total/m-p/2556789#M72612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-03T05:35:35Z</dc:date>
    </item>
  </channel>
</rss>

