<?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 Power BI - DAX Offset Function in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Power-BI-DAX-Offset-Function/m-p/3087537#M950</link>
    <description>&lt;H1&gt;Power BI — Offset&amp;nbsp;Function&lt;/H1&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;The OFFSET function retrieves a result based on the relative positioning of the data&lt;/P&gt;
&lt;P&gt;The offset function returns a single row that is positioned either before or after the current row, within the specified partition, sorted in the specified order, based on the offset provided. If the current row cannot be deduced to a single row for whatever reason, multiple rows will be returned.&lt;/P&gt;
&lt;P&gt;Instead of being pushed to the data source, DAX functions like Offset are executed within the DAX engine. These DAX functions have shown significantly improved performance compared to existing DAX expressions, particularly when sorting non-continuous columns is necessary.&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;OFFSET ( &amp;lt;delta/Number&amp;gt;, &amp;lt;relation/Table expression&amp;gt;, &amp;lt;order By from relation&amp;gt;, &amp;lt;blanks&amp;gt;, &amp;lt;partition By relation&amp;gt; )&lt;/PRE&gt;
&lt;P&gt;Model: I am using the standard sales model, which I am using for all my videos and blogs. Sales fact with a key measure [net], joined with dimensions: Item, Geography, Date, and Customer.&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Let us create a visual using the item category and net. We will also create our first offset measure Last Category and add to it.&amp;nbsp;&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Measure used. Also adding the next category&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="1" data-code-block-lang="sql"&gt;Last Category = CALCULATE([net], OFFSET(-1, ALLSELECTED(‘Item’[Category]), ORDERBY(‘Item’[Category],asc)))&lt;BR /&gt;Next Category = CALCULATE([net], OFFSET(1, ALLSELECTED('Item'[Category]), ORDERBY('Item'[Category],asc)))&lt;/PRE&gt;
&lt;P&gt;Once you add the brand to a visual, this measure will not work as expected as it is still looking for the order based on category&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;We will need a new set of measures&amp;nbsp;&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Last Category Brand = CALCULATE([net], OFFSET(-1, ALLSELECTED('Item'[Brand],'Item'[Category]), ORDERBY('Item'[Category],asc),KEEP,PARTITIONBY('Item'[Brand])))&lt;BR /&gt;Next Category Brand = CALCULATE([net], OFFSET(1, ALLSELECTED('Item'[Brand],'Item'[Category]), ORDERBY('Item'[Category],asc),KEEP,PARTITIONBY('Item'[Brand])))&lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;This is how we can get time intelligence. The default sort column will not work. We have to use sort column in relation and order by&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Offset Previous Month = CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year]),ORDERBY('Date'[Month Year sort]))) &lt;/PRE&gt;
&lt;P&gt;In case we want the previous month in the same year&amp;nbsp;&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Previous Month in Year = CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year],'Date'[Year],'Date'[Qtr Year]),ORDERBY('Date'[Month Year sort]),KEEP,PARTITIONBY('Date'[Year]))) &lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;One can create a combined measure for previous values like&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Previouse Value = SWITCH(TRUE(),&lt;BR /&gt;ISINSCOPE('Date'[Date]), CALCULATE([Net], OFFSET(-1, ALL('Date'[Date]))),&lt;BR /&gt;ISINSCOPE('Date'[Month Year]), CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year],'Date'[Year],'Date'[Qtr Year]),ORDERBY('Date'[Month Year sort]))),&lt;BR /&gt;ISINSCOPE('Date'[Qtr Year]),CALCULATE([Net], OFFSET(-1, ALL('Date'[Year], 'Date'[Qtr Year]))),&lt;BR /&gt;ISINSCOPE('Date'[Year]), CALCULATE([Net],OFFSET(-1, ALL('Date'[Year])))&lt;BR /&gt;)&lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;You can find the video below&lt;/P&gt;
&lt;FIGURE&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;div data-video-id="https://youtu.be/5YMlkDNGr0U" data-video-remote-vid="https://youtu.be/5YMlkDNGr0U" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F5YMlkDNGr0U%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D5YMlkDNGr0U&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F5YMlkDNGr0U%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Free Microsoft Power BI Course for Beginners, 2023&lt;/P&gt;
&lt;FIGURE&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;div data-video-id="https://www.youtube.com/watch?v=cN8AO3_vmlY" data-video-remote-vid="https://www.youtube.com/watch?v=cN8AO3_vmlY" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FcN8AO3_vmlY%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcN8AO3_vmlY&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FcN8AO3_vmlY%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/FIGURE&gt;
&lt;P&gt;My Medium blogs can be found &lt;A href="https://amitchandak.medium.com/" target="_blank" rel="noopener" data-href="https://amitchandak.medium.com/"&gt;here &lt;/A&gt;if you are interested&lt;/P&gt;
&lt;P&gt;Click &lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Blog-Analysis/m-p/1265567#M4403" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://community.powerbi.com/t5/Data-Stories-Gallery/Blog-Analysis/m-p/1265567#M4403"&gt;here&lt;/A&gt; to access all my blogs and videos in a jiffy via an exclusive glossary using Power BI. Please like, share, and comment on these blogs. I would appreciate your suggestions for improvement, challenges, and suggestions for topics so that I can explore these in more depth.&lt;/P&gt;
&lt;P&gt;In addition, I have over 500 videos on my &lt;A href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1"&gt;YouTube channel&lt;/A&gt; that are related to Power BI, Tableau, and Incorta. With the help of these videos, you will learn hundreds of DAX and Power Query functions, in addition to hundreds of Power BI, use cases that will assist you in becoming an expert in Power BI. Make sure you &lt;A href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1"&gt;subscribe&lt;/A&gt;, like, and share it with your friends.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=wvsAzTqSDVg&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=wvsAzTqSDVg&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb"&gt;Master Power BI&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=59PUFuuCrbY&amp;amp;list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=59PUFuuCrbY&amp;amp;list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L"&gt;Expertise in Power BI&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=tAmg00Wf_cw&amp;amp;list=PLPaNVDMhUXGYzjFASXjdY7GNoFxvlkR54" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=tAmg00Wf_cw&amp;amp;list=PLPaNVDMhUXGYzjFASXjdY7GNoFxvlkR54"&gt;Power BI For Tableau User&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=WlvQ_SGy4iA&amp;amp;list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=WlvQ_SGy4iA&amp;amp;list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj"&gt;DAX for SQL Users&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=ThCZYuYAbnY&amp;amp;list=PLPaNVDMhUXGblXMYDB1P46cBhwPXRVgiD" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=ThCZYuYAbnY&amp;amp;list=PLPaNVDMhUXGblXMYDB1P46cBhwPXRVgiD"&gt;Learn SQL&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Feb 2023 09:25:28 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2023-02-20T09:25:28Z</dc:date>
    <item>
      <title>Power BI - DAX Offset Function</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Power-BI-DAX-Offset-Function/m-p/3087537#M950</link>
      <description>&lt;H1&gt;Power BI — Offset&amp;nbsp;Function&lt;/H1&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;The OFFSET function retrieves a result based on the relative positioning of the data&lt;/P&gt;
&lt;P&gt;The offset function returns a single row that is positioned either before or after the current row, within the specified partition, sorted in the specified order, based on the offset provided. If the current row cannot be deduced to a single row for whatever reason, multiple rows will be returned.&lt;/P&gt;
&lt;P&gt;Instead of being pushed to the data source, DAX functions like Offset are executed within the DAX engine. These DAX functions have shown significantly improved performance compared to existing DAX expressions, particularly when sorting non-continuous columns is necessary.&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;OFFSET ( &amp;lt;delta/Number&amp;gt;, &amp;lt;relation/Table expression&amp;gt;, &amp;lt;order By from relation&amp;gt;, &amp;lt;blanks&amp;gt;, &amp;lt;partition By relation&amp;gt; )&lt;/PRE&gt;
&lt;P&gt;Model: I am using the standard sales model, which I am using for all my videos and blogs. Sales fact with a key measure [net], joined with dimensions: Item, Geography, Date, and Customer.&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Let us create a visual using the item category and net. We will also create our first offset measure Last Category and add to it.&amp;nbsp;&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Measure used. Also adding the next category&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="1" data-code-block-lang="sql"&gt;Last Category = CALCULATE([net], OFFSET(-1, ALLSELECTED(‘Item’[Category]), ORDERBY(‘Item’[Category],asc)))&lt;BR /&gt;Next Category = CALCULATE([net], OFFSET(1, ALLSELECTED('Item'[Category]), ORDERBY('Item'[Category],asc)))&lt;/PRE&gt;
&lt;P&gt;Once you add the brand to a visual, this measure will not work as expected as it is still looking for the order based on category&lt;/P&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;We will need a new set of measures&amp;nbsp;&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Last Category Brand = CALCULATE([net], OFFSET(-1, ALLSELECTED('Item'[Brand],'Item'[Category]), ORDERBY('Item'[Category],asc),KEEP,PARTITIONBY('Item'[Brand])))&lt;BR /&gt;Next Category Brand = CALCULATE([net], OFFSET(1, ALLSELECTED('Item'[Brand],'Item'[Category]), ORDERBY('Item'[Category],asc),KEEP,PARTITIONBY('Item'[Brand])))&lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;This is how we can get time intelligence. The default sort column will not work. We have to use sort column in relation and order by&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Offset Previous Month = CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year]),ORDERBY('Date'[Month Year sort]))) &lt;/PRE&gt;
&lt;P&gt;In case we want the previous month in the same year&amp;nbsp;&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Previous Month in Year = CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year],'Date'[Year],'Date'[Qtr Year]),ORDERBY('Date'[Month Year sort]),KEEP,PARTITIONBY('Date'[Year]))) &lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;One can create a combined measure for previous values like&lt;/P&gt;
&lt;PRE spellcheck="false" data-code-block-mode="2" data-code-block-lang="cpp"&gt;Previouse Value = SWITCH(TRUE(),&lt;BR /&gt;ISINSCOPE('Date'[Date]), CALCULATE([Net], OFFSET(-1, ALL('Date'[Date]))),&lt;BR /&gt;ISINSCOPE('Date'[Month Year]), CALCULATE([Net],OFFSET(-1, ALL('Date'[Month Year sort],'Date'[Month Year],'Date'[Year],'Date'[Qtr Year]),ORDERBY('Date'[Month Year sort]))),&lt;BR /&gt;ISINSCOPE('Date'[Qtr Year]),CALCULATE([Net], OFFSET(-1, ALL('Date'[Year], 'Date'[Qtr Year]))),&lt;BR /&gt;ISINSCOPE('Date'[Year]), CALCULATE([Net],OFFSET(-1, ALL('Date'[Year])))&lt;BR /&gt;)&lt;/PRE&gt;
&lt;FIGURE&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/FIGURE&gt;
&lt;P&gt;You can find the video below&lt;/P&gt;
&lt;FIGURE&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;div data-video-id="https://youtu.be/5YMlkDNGr0U" data-video-remote-vid="https://youtu.be/5YMlkDNGr0U" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F5YMlkDNGr0U%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D5YMlkDNGr0U&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F5YMlkDNGr0U%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/FIGURE&gt;
&lt;P&gt;Free Microsoft Power BI Course for Beginners, 2023&lt;/P&gt;
&lt;FIGURE&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;div data-video-id="https://www.youtube.com/watch?v=cN8AO3_vmlY" data-video-remote-vid="https://www.youtube.com/watch?v=cN8AO3_vmlY" class="lia-video-container lia-media-is-center lia-media-size-large"&gt;&lt;iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FcN8AO3_vmlY%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcN8AO3_vmlY&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FcN8AO3_vmlY%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" allowfullscreen="" style="max-width: 100%"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/FIGURE&gt;
&lt;P&gt;My Medium blogs can be found &lt;A href="https://amitchandak.medium.com/" target="_blank" rel="noopener" data-href="https://amitchandak.medium.com/"&gt;here &lt;/A&gt;if you are interested&lt;/P&gt;
&lt;P&gt;Click &lt;A href="https://community.powerbi.com/t5/Data-Stories-Gallery/Blog-Analysis/m-p/1265567#M4403" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://community.powerbi.com/t5/Data-Stories-Gallery/Blog-Analysis/m-p/1265567#M4403"&gt;here&lt;/A&gt; to access all my blogs and videos in a jiffy via an exclusive glossary using Power BI. Please like, share, and comment on these blogs. I would appreciate your suggestions for improvement, challenges, and suggestions for topics so that I can explore these in more depth.&lt;/P&gt;
&lt;P&gt;In addition, I have over 500 videos on my &lt;A href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1"&gt;YouTube channel&lt;/A&gt; that are related to Power BI, Tableau, and Incorta. With the help of these videos, you will learn hundreds of DAX and Power Query functions, in addition to hundreds of Power BI, use cases that will assist you in becoming an expert in Power BI. Make sure you &lt;A href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/c/Amitchandak?sub_confirmation=1"&gt;subscribe&lt;/A&gt;, like, and share it with your friends.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=wvsAzTqSDVg&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=wvsAzTqSDVg&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb"&gt;Master Power BI&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=59PUFuuCrbY&amp;amp;list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=59PUFuuCrbY&amp;amp;list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L"&gt;Expertise in Power BI&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=tAmg00Wf_cw&amp;amp;list=PLPaNVDMhUXGYzjFASXjdY7GNoFxvlkR54" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=tAmg00Wf_cw&amp;amp;list=PLPaNVDMhUXGYzjFASXjdY7GNoFxvlkR54"&gt;Power BI For Tableau User&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=WlvQ_SGy4iA&amp;amp;list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=WlvQ_SGy4iA&amp;amp;list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj"&gt;DAX for SQL Users&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=ThCZYuYAbnY&amp;amp;list=PLPaNVDMhUXGblXMYDB1P46cBhwPXRVgiD" target="_blank" rel="noopener ugc nofollow noopener" data-href="https://www.youtube.com/watch?v=ThCZYuYAbnY&amp;amp;list=PLPaNVDMhUXGblXMYDB1P46cBhwPXRVgiD"&gt;Learn SQL&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2023 09:25:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Power-BI-DAX-Offset-Function/m-p/3087537#M950</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-02-20T09:25:28Z</dc:date>
    </item>
  </channel>
</rss>

