<?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: Seeking help with the DAX formula : Groupby and lookupvalue functions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994226#M155079</link>
    <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569583" data-lia-user-login="Dangar332" class="lia-mention lia-mention-user"&gt;Dangar332&lt;/a&gt;, for the prompt reply. I have tried this formula and it could be helpful. However, I have a query related to the same concerns that,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to count rows of "OK" and "NOK" serial numbers in the generated table using the measure as per your solution. For Example, one measure should contain a value of 3 for "OK" and 1 for "NOK". Along with your query, How do count the serial numbers from the virtual table?&lt;/P&gt;</description>
    <pubDate>Sat, 15 Jun 2024 09:17:05 GMT</pubDate>
    <dc:creator>Nicks612</dc:creator>
    <dc:date>2024-06-15T09:17:05Z</dc:date>
    <item>
      <title>Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992548#M154965</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with the following issues:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;SerialNumber&lt;/TD&gt;&lt;TD&gt;OK / NOK&lt;/TD&gt;&lt;TD&gt;DBKey&lt;/TD&gt;&lt;TD&gt;Problem Description&lt;/TD&gt;&lt;TD&gt;Remarks&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032406494&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230405082149&lt;/TD&gt;&lt;TD&gt;I have these three columns in my data. I want to return these three columns concerning the minimum value of DBKey. (Refer To Table.)&lt;/TD&gt;&lt;TD&gt;DBKey is a combination of date and test time in&amp;nbsp;the&amp;nbsp;below format - YYYY-MM-DD-HH-MM-SS, which is always unique.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032406494&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230401082331&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032506584&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230331082009&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032006260&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230330081531&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032106349&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230329064408&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032106349&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230329063959&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032506584&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230325190045&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032406494&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230324185510&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032006260&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230321155209&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032006260&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230321094402&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to generate the following table which contains a unique serial number with a minimum value of their respective DBKey values. For Example, for the "23032406494" SerialNumber, there are three different entries of DBKey which are - "20230405082149", "20230401082331" and "20230324185510". Out of these DBKey values for the mentioned SerialNumber, this DBKey value "20230324185510" should come as this is the lowest value among the three DBKey values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Resulted Columns:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SerialNumber&lt;/TD&gt;&lt;TD&gt;OK / NOK&lt;/TD&gt;&lt;TD&gt;DBKey&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032006260&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230321094402&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032106349&lt;/TD&gt;&lt;TD&gt;OK&lt;/TD&gt;&lt;TD&gt;20230329063959&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032406494&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230324185510&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23032506584&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230325190045&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have implemented this logic using the GroupBy and merge option in the Power BI query editor. However, I need to do it using DAX formulas like table function and table manipulation functions - after that, I create a measure to count the number of serial numbers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly, provide the solutions and let me know if anyone needs further clarifications or doubts on the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yash P&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 05:57:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992548#M154965</guid>
      <dc:creator>Nicks612</dc:creator>
      <dc:date>2024-06-14T05:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992611#M154969</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644688" data-lia-user-login="Nicks612" class="lia-mention lia-mention-user"&gt;Nicks612&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try below formula for new table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New Table = 
 ADDCOLUMNS(
    VALUES('Table'[SerialNumber]),
    "DBKey",
    MINX(
                 FILTER(ALL('Table'),
                       'Table'[SerialNumber]= EARLIER('Table'[SerialNumber])
                    ),
                 'Table'[DBKey]
            ),
    "OK/NOK",
    MINX(
        FILTER(
            ALL('Table'),
            'Table'[DBKey]=MINX(
                             FILTER(
                                ALL('Table'),
                                'Table'[SerialNumber]= EARLIEST('Table'[SerialNumber])
                            ),'Table'[DBKey])
        ),
        'Table'[OK / NOK])
)&lt;/LI-CODE&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;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;BR /&gt;Dangar&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 06:26:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992611#M154969</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-06-14T06:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992667#M154972</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644688" data-lia-user-login="Nicks612" class="lia-mention lia-mention-user"&gt;Nicks612&lt;/a&gt;&amp;nbsp;Why do you have NOK for:&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;23032506584&lt;/TD&gt;&lt;TD&gt;NOK&lt;/TD&gt;&lt;TD&gt;20230325190045&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Solution 1 = 
ADDCOLUMNS (
    ADDCOLUMNS ( 
        VALUES ( 'Table'[SerialNumber] ),
        "DBKey", CALCULATE ( MIN ( 'Table'[DBKey] ) )
    ),
    "OK/NOK", 
        CALCULATE ( 
            SELECTEDVALUE ( 'Table'[OK / NOK] ),
            TREATAS ( { [DBKey] }, 'Table'[DBKey] )
        )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Solution 2 = 
CALCULATETABLE (
    'Table',
    TREATAS ( 
        ADDCOLUMNS ( 
            VALUES ( 'Table'[SerialNumber] ),
            "DBKey", CALCULATE ( MIN ( 'Table'[DBKey] ) )
        ),
        'Solution 1'[SerialNumber],
        'Table'[DBKey]
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 06:44:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3992667#M154972</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2024-06-14T06:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994226#M155079</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569583" data-lia-user-login="Dangar332" class="lia-mention lia-mention-user"&gt;Dangar332&lt;/a&gt;, for the prompt reply. I have tried this formula and it could be helpful. However, I have a query related to the same concerns that,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to count rows of "OK" and "NOK" serial numbers in the generated table using the measure as per your solution. For Example, one measure should contain a value of 3 for "OK" and 1 for "NOK". Along with your query, How do count the serial numbers from the virtual table?&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 09:17:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994226#M155079</guid>
      <dc:creator>Nicks612</dc:creator>
      <dc:date>2024-06-15T09:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994234#M155081</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="236628" data-lia-user-login="AntrikshSharma" class="lia-mention lia-mention-user"&gt;AntrikshSharma&lt;/a&gt;, for the prompt reply!!&lt;/P&gt;&lt;P&gt;Sorry, for the typo mistake. It is "OK" instead of "NOK".&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 09:34:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994234#M155081</guid>
      <dc:creator>Nicks612</dc:creator>
      <dc:date>2024-06-15T09:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994238#M155083</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644688" data-lia-user-login="Nicks612" class="lia-mention lia-mention-user"&gt;Nicks612&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try below measure&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New Table = 
 ADDCOLUMNS(
    VALUES('Table'[SerialNumber]),
    "DBKey",
    MINX(
                 FILTER(ALL('Table'),
                       'Table'[SerialNumber]= EARLIER('Table'[SerialNumber])
                    ),
                 'Table'[DBKey]
            ),
    "OK/NOK",
    MINX(
        FILTER(
            ALL('Table'),
            'Table'[DBKey]=MINX(
                             FILTER(
                                ALL('Table'),
                                'Table'[SerialNumber]= EARLIEST('Table'[SerialNumber])
                            ),'Table'[DBKey])
        ),
        'Table'[OK / NOK])
)&lt;/LI-CODE&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;Best Regards&lt;BR /&gt;Dangar&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 09:53:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994238#M155083</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-06-15T09:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994268#M155088</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569583" data-lia-user-login="Dangar332" class="lia-mention lia-mention-user"&gt;Dangar332&lt;/a&gt;, It is working correctly, but in my case, I have a time slicer from another table and if I create one more physical table then it is difficult to establish the relationship between the two tables.&lt;/P&gt;&lt;P&gt;Earlier, I was unaware of this scenario, therefore I didn't mention that. Sorry, for the inconvenience happened.&lt;/P&gt;&lt;P&gt;Can you please guide me to make a logic that gives me a total serial number of the "OK" and "NOK" values (two different measures for "OK"&amp;nbsp; and "NOK") by creating a virtual table in measure without creating a physical table?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 11:14:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994268#M155088</guid>
      <dc:creator>Nicks612</dc:creator>
      <dc:date>2024-06-15T11:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994804#M155138</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644688" data-lia-user-login="Nicks612" class="lia-mention lia-mention-user"&gt;Nicks612&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try below measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;measure(OK) = 
 var a =ADDCOLUMNS(
    VALUES('Table'[SerialNumber]),
    "DBKey",
    MINX(
                 FILTER(ALL('Table'),
                       'Table'[SerialNumber]= EARLIER('Table'[SerialNumber])
                    ),
                 'Table'[DBKey]
            ),
    "OK/NOK",
    MINX(
        FILTER(
            ALL('Table'),
            'Table'[DBKey]=MINX(
                             FILTER(
                                ALL('Table'),
                                'Table'[SerialNumber]= EARLIEST('Table'[SerialNumber])
                            ),'Table'[DBKey])
        ),
        'Table'[OK / NOK])
)
RETURN
COUNTX(FILTER(a,[OK/NOK]="OK"),[OK/NOK])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For NOK measure Replace OK with "NOK" in&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;COUNTX(FILTER(a,[OK/NOK]="NOK"),[OK/NOK]) &lt;/STRONG&gt;Part&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;BR /&gt;Dangar&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jun 2024 11:47:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/3994804#M155138</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-06-16T11:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Seeking help with the DAX formula : Groupby and lookupvalue functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/4017783#M158436</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569583" data-lia-user-login="Dangar332" class="lia-mention lia-mention-user"&gt;Dangar332&lt;/a&gt;, Thank you so much for the solution!&amp;nbsp;The solution which you provided is working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 05:43:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Seeking-help-with-the-DAX-formula-Groupby-and-lookupvalue/m-p/4017783#M158436</guid>
      <dc:creator>Nicks612</dc:creator>
      <dc:date>2024-07-01T05:43:15Z</dc:date>
    </item>
  </channel>
</rss>

