<?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 DAX Cheat Sheet - Success of CSS Selector in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/559474#M2350</link>
    <description>&lt;P&gt;&lt;SPAN&gt;This report is sourcing from &lt;/SPAN&gt;&lt;A href="https://msdn.microsoft.com/en-us/query-bi/dax/data-analysis-expressions-dax-reference" target="_blank"&gt;MS official DAX Reference site&lt;/A&gt;&lt;SPAN&gt; by using a dynamic way to extract the data based on CSS selector; Visit my blog for more Power BI tips and tricks: &lt;/SPAN&gt;&lt;A href="http://funbiworld.com/" target="_blank"&gt;funbiworld.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Methods:&lt;/P&gt;
&lt;P&gt;Using CSS selector to directly retrieve Functions Name and Link from the parent (DAX Category) page.&amp;nbsp; Then use Custom Functions to get details per each Link.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Key M Scripts:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    Source = Web.BrowserContents(DaxGroupURL),
    #"Extracted Table From Html" = Html.Table(Source, {{"FunctionName", "[id*=""api-doc-contents""] &amp;gt; H1,[id*=""api-doc-contents""] &amp;gt; P,[id*=""api-doc-contents""] &amp;gt; H2"},{"Link",  "a[href]",  each [Attributes][href]}},[RowSelector="[id*=""api-doc-contents""] &amp;gt; H1,[id*=""api-doc-contents""] &amp;gt; P,[id*=""api-doc-contents""] &amp;gt; H2"]),&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Custom Visuals:&lt;/P&gt;
&lt;P&gt;Using Hierarchy&amp;nbsp;Slicer and Text Filter to make a better browsing experience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMWI2YjFmZDAtNWRlYy00ZDliLWEzMGYtZjUzOGVmMGFlN2Q2IiwidCI6ImJlZWY0NDQyLTg2NzgtNDM0MC1hYWQwLTlmZDY2Yjg1ZjRlYSJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 03 Nov 2018 07:06:20 GMT</pubDate>
    <dc:creator>EricDong</dc:creator>
    <dc:date>2018-11-03T07:06:20Z</dc:date>
    <item>
      <title>DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/559474#M2350</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This report is sourcing from &lt;/SPAN&gt;&lt;A href="https://msdn.microsoft.com/en-us/query-bi/dax/data-analysis-expressions-dax-reference" target="_blank"&gt;MS official DAX Reference site&lt;/A&gt;&lt;SPAN&gt; by using a dynamic way to extract the data based on CSS selector; Visit my blog for more Power BI tips and tricks: &lt;/SPAN&gt;&lt;A href="http://funbiworld.com/" target="_blank"&gt;funbiworld.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Methods:&lt;/P&gt;
&lt;P&gt;Using CSS selector to directly retrieve Functions Name and Link from the parent (DAX Category) page.&amp;nbsp; Then use Custom Functions to get details per each Link.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Key M Scripts:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    Source = Web.BrowserContents(DaxGroupURL),
    #"Extracted Table From Html" = Html.Table(Source, {{"FunctionName", "[id*=""api-doc-contents""] &amp;gt; H1,[id*=""api-doc-contents""] &amp;gt; P,[id*=""api-doc-contents""] &amp;gt; H2"},{"Link",  "a[href]",  each [Attributes][href]}},[RowSelector="[id*=""api-doc-contents""] &amp;gt; H1,[id*=""api-doc-contents""] &amp;gt; P,[id*=""api-doc-contents""] &amp;gt; H2"]),&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Custom Visuals:&lt;/P&gt;
&lt;P&gt;Using Hierarchy&amp;nbsp;Slicer and Text Filter to make a better browsing experience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMWI2YjFmZDAtNWRlYy00ZDliLWEzMGYtZjUzOGVmMGFlN2Q2IiwidCI6ImJlZWY0NDQyLTg2NzgtNDM0MC1hYWQwLTlmZDY2Yjg1ZjRlYSJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Nov 2018 07:06:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/559474#M2350</guid>
      <dc:creator>EricDong</dc:creator>
      <dc:date>2018-11-03T07:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/573166#M2378</link>
      <description>&lt;P&gt;Great job Eric!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 01:59:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/573166#M2378</guid>
      <dc:creator>chass</dc:creator>
      <dc:date>2018-11-27T01:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/789350#M2971</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great job sir!&lt;/P&gt;
&lt;P&gt;is it possible you can send me the data file and pbix file&amp;nbsp;for this? &amp;nbsp;would be very educational for me as a beginner and would realy help my learning&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 11:35:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/789350#M2971</guid>
      <dc:creator>JasperS</dc:creator>
      <dc:date>2019-09-11T11:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/1129409#M4026</link>
      <description>&lt;P&gt;hi is it possble to receive the Pbix - thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 13:59:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/1129409#M4026</guid>
      <dc:creator>Tkb7117</dc:creator>
      <dc:date>2020-05-29T13:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/1717383#M5106</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="90145" data-lia-user-login="EricDong" class="lia-mention lia-mention-user"&gt;EricDong&lt;/a&gt;&amp;nbsp;Do you still have the .pbix file for this, by any chance?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 21:31:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/1717383#M5106</guid>
      <dc:creator>JamesDBartlett3</dc:creator>
      <dc:date>2021-03-11T21:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2480476#M7153</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, this is so useful! Is it possble to receive the Pbix?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 12:44:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2480476#M7153</guid>
      <dc:creator>Nia</dc:creator>
      <dc:date>2022-04-27T12:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2736155#M8231</link>
      <description>&lt;P&gt;Hello,,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is awsome. I&lt;SPAN&gt;s it possible you can send me the pbix file&amp;nbsp;for this?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="mailto:ediz.eracar@gmail.com" target="_blank"&gt;ediz.eracar@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 18:41:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2736155#M8231</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-30T18:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2887658#M8651</link>
      <description>&lt;P&gt;This is pretty awesome!!&lt;/P&gt;</description>
      <pubDate>Sun, 06 Nov 2022 17:09:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/2887658#M8651</guid>
      <dc:creator>J_Sekellick</dc:creator>
      <dc:date>2022-11-06T17:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/3325923#M10660</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="90145" data-lia-user-login="EricDong" class="lia-mention lia-mention-user"&gt;EricDong&lt;/a&gt;&amp;nbsp;, this is absolutely awesome and so useful!&amp;nbsp; By any chance, would you be willing to share the pbix file with me?&amp;nbsp; I'm hopeful that I can learn a lot from this.&amp;nbsp; Many thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 18:54:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/3325923#M10660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-11T18:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/3579098#M11641</link>
      <description>&lt;P&gt;Very useful information, Thanks for sharing&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 06:53:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/3579098#M11641</guid>
      <dc:creator>PijushRoy</dc:creator>
      <dc:date>2023-12-12T06:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Cheat Sheet - Success of CSS Selector</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/4706399#M14461</link>
      <description>&lt;P&gt;that an amazing work done by you. and helpful for everyone. well done.&lt;/P&gt;</description>
      <pubDate>Sun, 25 May 2025 20:38:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/DAX-Cheat-Sheet-Success-of-CSS-Selector/m-p/4706399#M14461</guid>
      <dc:creator>rptanalyst</dc:creator>
      <dc:date>2025-05-25T20:38:12Z</dc:date>
    </item>
  </channel>
</rss>

