<?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 get &amp;quot;Offset&amp;quot; data by using measure in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3836234#M149991</link>
    <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have 2 tables in Power BI report as below,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table 1 contains material data, it has 2 columns : "Material Code" and "Material Name"&lt;/LI&gt;&lt;/UL&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Material Code&lt;/TD&gt;&lt;TD&gt;Material Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9960026&lt;/TD&gt;&lt;TD&gt;Steel&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9960049&lt;/TD&gt;&lt;TD&gt;Aluminm&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;99600053&lt;/TD&gt;&lt;TD&gt;Wood&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;Plastic&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;Glass&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;Concrete&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;Rubber&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table 2 contains Purchase Order Data . it has 3 columns. "PO Number", "Material Code" and "Qty".&amp;nbsp; each PO contains multiply materials, and a material can be exist under mulitply PO.&lt;/LI&gt;&lt;/UL&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;PO Number&lt;/TD&gt;&lt;TD&gt;Material Code&lt;/TD&gt;&lt;TD&gt;Qty&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;9960026&lt;/TD&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;9960049&lt;/TD&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;99600053&lt;/TD&gt;&lt;TD&gt;222&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58040307&lt;/TD&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;666&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58040307&lt;/TD&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;777&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58049777&lt;/TD&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;44&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58049777&lt;/TD&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59005219&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59005219&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59007819&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59007819&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59009989&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59009989&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P class="lia-indent-padding-left-90px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;these 2 tables use Column "Material Code" to build the relationship .&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;My purpose is when user choose a material code(i can put a slicer in report, and bind to material table) ,&amp;nbsp; it can show the associated PO numbers and the material codes which are having the same PO number but the different materials codes.&amp;nbsp; &amp;nbsp;i can use DAX query to show the data. but i don't how to show the data in the report with a Table Visual by using measure.&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;&amp;nbsp;below screenshot shows the steps to get the result in Excel. for your information.&amp;nbsp; in Power BI , i need user to choose a material code , and then a table visual will show the similar data in step 3 of below screenshot.&amp;nbsp; the column "Material Name" also need to be added to the Table Visual in report.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;Thanks in advance for your time and support.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 14 Apr 2024 13:54:51 GMT</pubDate>
    <dc:creator>sunyangjun1115</dc:creator>
    <dc:date>2024-04-14T13:54:51Z</dc:date>
    <item>
      <title>How to get "Offset" data by using measure in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3836234#M149991</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have 2 tables in Power BI report as below,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table 1 contains material data, it has 2 columns : "Material Code" and "Material Name"&lt;/LI&gt;&lt;/UL&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Material Code&lt;/TD&gt;&lt;TD&gt;Material Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9960026&lt;/TD&gt;&lt;TD&gt;Steel&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9960049&lt;/TD&gt;&lt;TD&gt;Aluminm&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;99600053&lt;/TD&gt;&lt;TD&gt;Wood&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;Plastic&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;Glass&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;Concrete&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;Rubber&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Table 2 contains Purchase Order Data . it has 3 columns. "PO Number", "Material Code" and "Qty".&amp;nbsp; each PO contains multiply materials, and a material can be exist under mulitply PO.&lt;/LI&gt;&lt;/UL&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;PO Number&lt;/TD&gt;&lt;TD&gt;Material Code&lt;/TD&gt;&lt;TD&gt;Qty&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;9960026&lt;/TD&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;9960049&lt;/TD&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58003289&lt;/TD&gt;&lt;TD&gt;99600053&lt;/TD&gt;&lt;TD&gt;222&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58040307&lt;/TD&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;666&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58040307&lt;/TD&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;777&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58049777&lt;/TD&gt;&lt;TD&gt;350200&lt;/TD&gt;&lt;TD&gt;44&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;58049777&lt;/TD&gt;&lt;TD&gt;4500200&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59005219&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59005219&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59007819&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59007819&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59009989&lt;/TD&gt;&lt;TD&gt;6850000&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;59009989&lt;/TD&gt;&lt;TD&gt;94020000&lt;/TD&gt;&lt;TD&gt;333&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P class="lia-indent-padding-left-90px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;these 2 tables use Column "Material Code" to build the relationship .&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;My purpose is when user choose a material code(i can put a slicer in report, and bind to material table) ,&amp;nbsp; it can show the associated PO numbers and the material codes which are having the same PO number but the different materials codes.&amp;nbsp; &amp;nbsp;i can use DAX query to show the data. but i don't how to show the data in the report with a Table Visual by using measure.&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;&amp;nbsp;below screenshot shows the steps to get the result in Excel. for your information.&amp;nbsp; in Power BI , i need user to choose a material code , and then a table visual will show the similar data in step 3 of below screenshot.&amp;nbsp; the column "Material Name" also need to be added to the Table Visual in report.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;Thanks in advance for your time and support.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2024 13:54:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3836234#M149991</guid>
      <dc:creator>sunyangjun1115</dc:creator>
      <dc:date>2024-04-14T13:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get "Offset" data by using measure in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3836376#M149997</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file whether it suits your requirement.&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;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;total qty expected measure: =
VAR _slicerlist =
    VALUES ( slicer_material[Material Code] )
VAR _targetponumber =
    CALCULATETABLE (
        SUMMARIZE (
            FILTER (
                SUMMARIZE (
                    fact_purchase_order,
                    fact_purchase_order[PO Number],
                    dim_material[Material Code]
                ),
                dim_material[Material Code] IN _slicerlist
            ),
            fact_purchase_order[PO Number]
        ),
        REMOVEFILTERS ( dim_material )
    )
VAR _exceptslicerlist =
    FILTER (
        SUMMARIZE (
            fact_purchase_order,
            fact_purchase_order[PO Number],
            dim_material[Material Code]
        ),
        fact_purchase_order[PO Number]
            IN _targetponumber
                &amp;amp;&amp;amp; NOT ( dim_material[Material Code] IN _slicerlist )
    )
RETURN
    CALCULATE (
        SUM ( fact_purchase_order[Qty] ),
        TREATAS (
            _exceptslicerlist,
            fact_purchase_order[PO Number],
            dim_material[Material Code]
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2024 17:06:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3836376#M149997</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-04-14T17:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get "Offset" data by using measure in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3837002#M150012</link>
      <description>&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for your prompt support.&amp;nbsp; your understanding for my requirement is 100% correct.&amp;nbsp; i tested the measure within the PBIX file that you shared , it works as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the only thing that i found strange is that when i add the column "Material_Code" from Table "fact_purchase-order" into the Table Visual .&amp;nbsp; the data in the Table Visual will disappear.&amp;nbsp; but if i choose the column "Material_Code" from table "dim_material", it works. see below screen.&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;since in my actual case, the fact table(similar as&amp;nbsp; table "fact_purcahse_order" in this demo) contains some other columns that i also need to add to Table Visual for visualize. i have tried to choose some of columns and added into the Table Visual, the result is that no data will show.&amp;nbsp; the same issue as the demo that i encountered.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 06:06:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3837002#M150012</guid>
      <dc:creator>sunyangjun1115</dc:creator>
      <dc:date>2024-04-15T06:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get "Offset" data by using measure in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3839584#M150112</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you for your reply.&lt;/P&gt;
&lt;P&gt;In my opinion, the measure that I have created works with material code column only from the dimension table -&amp;gt; REMOVEFILTERS(dimension table[column])&lt;BR /&gt;Try REMOVEFILTERS() from the fact table as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;total qty expected measure: = 
VAR _slicerlist =
    VALUES ( slicer_material[Material Code] )
VAR _targetponumber =
    CALCULATETABLE (
        SUMMARIZE (
            FILTER (
                SUMMARIZE (
                    fact_purchase_order,
                    fact_purchase_order[PO Number],
                    dim_material[Material Code]
                ),
                dim_material[Material Code] IN _slicerlist
            ),
            fact_purchase_order[PO Number]
        ),
        REMOVEFILTERS ( )
    )
VAR _exceptslicerlist =
    FILTER (
        SUMMARIZE (
            fact_purchase_order,
            fact_purchase_order[PO Number],
            dim_material[Material Code]
        ),
        fact_purchase_order[PO Number]
            IN _targetponumber
                &amp;amp;&amp;amp; NOT ( dim_material[Material Code] IN _slicerlist )
    )
RETURN
    CALCULATE (
        SUM ( fact_purchase_order[Qty] ),
        TREATAS (
            _exceptslicerlist,
            fact_purchase_order[PO Number],
            dim_material[Material Code]
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 03:00:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3839584#M150112</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-04-16T03:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get "Offset" data by using measure in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3844633#M150279</link>
      <description>&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks so much for your kindly reply.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Followed by your instruction, it works after the code "&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(fact_purchase_order[Material Code])" is added into the measure.&amp;nbsp; it means that for column "Material Code", no matter which table i choose it from. the table Visual will always shows the right data.&amp;nbsp;&amp;nbsp;&lt;/SPAN&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;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;many thanks for your time and great support.&amp;nbsp; it has resolved my problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have doubts about the measure when it is added to the table Visual.&amp;nbsp; &amp;nbsp;could you please explain a bit more about how the value of the measure is calcuated when we add&amp;nbsp; the columns to the Table Visual . for example,&amp;nbsp; we choose column "PO Number" and "Material Code" from table "fact_purchase_order" and add into the Table Visual.&amp;nbsp; and then we also add the measure that you created into the Table Visual.&amp;nbsp; why we can get the materials which are having the same purchase order with the "selected Material ", i know the measure can calcuate the total qty of the materials which are having the same PO number with the selected material. and if i put this measure to the "Card" Visual in the report, the result can very easy undertand. my question is when we put the measure and cloumns together in a "Table " Visual. how it works. why it can show the data(only the materials which have&amp;nbsp; the same PO Number with the selected material )&amp;nbsp; ,what is the principle?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 08:31:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-quot-Offset-quot-data-by-using-measure-in-Power-BI/m-p/3844633#M150279</guid>
      <dc:creator>sunyangjun1115</dc:creator>
      <dc:date>2024-04-17T08:31:50Z</dc:date>
    </item>
  </channel>
</rss>

