<?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: SQL to DAX conversion in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284404#M55985</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp; yes you are absolutely right. ROW_NUMBER() and RANK() are two different windowed functions in SQL. The closest to ROW_NUMBER() what we have in DAX is RANKX(). That is what I meant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again !!! learning a lot from here everyday.&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jan 2022 20:51:50 GMT</pubDate>
    <dc:creator>smpa01</dc:creator>
    <dc:date>2022-01-14T20:51:50Z</dc:date>
    <item>
      <title>SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283598#M55924</link>
      <description>&lt;P&gt;&lt;SPAN&gt;i am facing issue while converting below SQL query into DAX. Can you please help me to convert the query:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Select&lt;/STRONG&gt;&amp;nbsp;Count ( Distict id)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;From&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(&lt;STRONG&gt;Select&lt;/STRONG&gt;&amp;nbsp;id,&amp;nbsp;&lt;STRONG&gt;ROW_NUMBER () OVER&lt;/STRONG&gt;&amp;nbsp;(&lt;STRONG&gt;PARTITION BY&lt;/STRONG&gt;&amp;nbsp;id ORDER BY id_color, id_num, id ) R&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;From&lt;/STRONG&gt;&amp;nbsp;tablle_color ) Q&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;WHERE&lt;/STRONG&gt;&amp;nbsp;R = 1&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 11:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283598#M55924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-14T11:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283659#M55929</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , You have to create a column first &lt;/P&gt;
&lt;P&gt;R = rankx(filter(tablle_color, [id_color] = earlier([id_color]) &amp;amp;&amp;amp; [id_num] = earlier([id_num])), [id],,asc,dense)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The create a measure&lt;/P&gt;
&lt;P&gt;measure = calculate( distinctcount(Table[ID]) , filter( tablle_color, tablle_color[R]=1))&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 11:57:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283659#M55929</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-14T11:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283974#M55954</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="168297" data-lia-user-login="bcdobbs" class="lia-mention lia-mention-user"&gt;bcdobbs&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507" data-lia-user-login="parry2k" class="lia-mention lia-mention-user"&gt;parry2k&lt;/a&gt;&amp;nbsp;this is an interesting problem to me and let me describe it here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TLDR :- is there any way to pass on multiple column expression in RANKX &amp;lt;expression&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;RANKX(&amp;lt;table&amp;gt;, &amp;lt;expression&amp;gt;[, &amp;lt;value&amp;gt;[, &amp;lt;order&amp;gt;[, &amp;lt;ties&amp;gt;]]])  &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OP's SQL (before filtering R=1) can be simplified as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Select 
  id, 
  id_color, 
  id_num, 
  ROW_NUMBER () OVER (
    PARTITION BY id 
    ORDER BY 
      id_color, 
      id_num, 
      id
  ) as Row #
From 
  @tabelle_color 
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With a SQL DDL it will look like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;declare @tabelle_color as table (id varchar(1), id_color varchar(10), id_num integer,[index] integer)
insert into @tabelle_color
select * from
(values('1','red',1,1), ('1','green',1,2), ('1','magenta',2,3)
       , ('2','purple',-1,4), ('2','blue',-1,5), ('2','orange',2,6)
) t (a,b,c,d)

--Select id, id_color, id_num, [index], ROW_NUMBER () OVER (PARTITION BY id ORDER BY id_color, id_num, id ) as Row#

-- From @tabelle_color
-- order by id, [Row#] ASC

 Select id, id_color, id_num, [index], ROW_NUMBER () OVER (PARTITION BY id ORDER BY id_num, id_color, id ) as Row#

 From @tabelle_color
 order by id, [Row#] ASC&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The reason why it is interesting to me is because SQL ORDER BY takes the combination of the first column and second column specified in ORDER BY to generate the ROW_Number(). To prove my point, I changed the ORDER BY&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ORDER BY id_num, id_color&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as opposed to OP's&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ORDER BY id_color, id_num&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In DAX while it is no issue at all to replicate PARTITION (with many many partitions if req), I have rarely come across a situation to generate ranking based on two columns inside a PARTITION, which is why this is a good opportunity to discuss it here.&lt;/P&gt;
&lt;P&gt;This is what my approach is and can you please take a look and advise if this is the correct approach to pass on multiple columns for ORDER BY Inside RANKX in &amp;lt;expression&amp;gt; that is equivalent of SQL Order by.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;RANKX(&amp;lt;table&amp;gt;, &amp;lt;expression&amp;gt;[, &amp;lt;value&amp;gt;[, &amp;lt;order&amp;gt;[, &amp;lt;ties&amp;gt;]]]) &lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Measure = 
RANKX (
    FILTER ( ALLSELECTED ( _tbl ), _tbl[id] = CALCULATE ( MAX ( _tbl[id] ) ) ),
    CALCULATE ( MAX ( _tbl[id_num] ) ) &amp;amp; CALCULATE ( MAX ( _tbl[id_color] ) ),
    ,
    ASC,
    DENSE
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could not make it to work&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;However, I can make the calculated column as following and I can also write an equivalent table expression.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But how can an equivalent measure be written?&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>Fri, 14 Jan 2022 15:56:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2283974#M55954</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-14T15:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284099#M55960</link>
      <description>&lt;P&gt;Simple concatenation of columns can get you into trouble since e.g. "2blue" &amp;gt; "10pink".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For ranking over multiple columns, I'd start here:&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/rankx-on-multiple-columns-with-dax-and-power-bi/" target="_blank"&gt;https://www.sqlbi.com/articles/rankx-on-multiple-columns-with-dax-and-power-bi/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 16:08:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284099#M55960</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2022-01-14T16:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284116#M55963</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;and this might work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
RANKX (
    FILTER ( ALLSELECTED ( _tbl ), _tbl[id] =  ( MAX ( _tbl[id] ) ) ),
    CALCULATE ( MAX ( _tbl[id_num] ) &amp;amp; MAX ( _tbl[id_color] ) ),
    
    ,
    ASC,
    DENSE
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 16:19:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284116#M55963</guid>
      <dc:creator>parry2k</dc:creator>
      <dc:date>2022-01-14T16:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284164#M55965</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507" data-lia-user-login="parry2k" class="lia-mention lia-mention-user"&gt;parry2k&lt;/a&gt;&amp;nbsp; Wow !!! Thanks, this is awesome.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 16:42:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284164#M55965</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-14T16:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284197#M55971</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; you can use a measure like this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _rank =
    RANKX (
        FILTER ( ALLSELECTED ( _tbl ), _tbl[id] = MAX ( _tbl[id] ) ),
        CALCULATE ( MAX ( _tbl[id_num] ) &amp;amp; MAX ( _tbl[id_color] ) ),
        ,
        ASC,
        DENSE
    )
VAR _filt =
    FILTER ( ADDCOLUMNS ( _tbl, "rank", [_rank] ), [rank] = 1 )
RETURN
    CALCULATE ( DISTINCTCOUNT ( _tbl[id] ), _filt )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 14 Jan 2022 17:09:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284197#M55971</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-14T17:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284209#M55972</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Can you explain what this query is intended to do? I don't quite follow how the ordering going on has any effect on the distinct count of id.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 17:21:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284209#M55972</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2022-01-14T17:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284399#M55984</link>
      <description>&lt;P&gt;IMHO, ROW_NUMBER() has nothing to do with RANKX(); its equivalent is Table.Group(..., {Table.AddIndexColumn()}) in PQ,&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DECLARE @tabelle_color AS TABLE (
  [index] INTEGER IDENTITY(1, 1), 
  id NVARCHAR(1), 
  id_color NVARCHAR(10), 
  id_num INTEGER
)

INSERT INTO @tabelle_color (id, id_color, id_num) 
VALUES 
  ('1', 'red', 3), 
  ('2', 'blue', 1), 
  ('1', 'red', 1), 
  ('1', 'magenta', 2), 
  ('2', 'purple', -1), 
  ('1', 'green', 1), 
  ('2', 'blue', -1), 
  ('2', 'orange', 3), 
  ('1', 'red', 6), 
  ('1', 'green', 5), 
  ('2', 'orange', 2), 
  ('1', 'red', 1), 
  ('1', 'red', 4) 


SELECT 
  id, 
  id_color, 
  id_num, 
  Row_number () OVER (
    PARTITION BY id 
    ORDER BY 
	  id_num,
      id_color
  ) AS [Row #]
FROM 
  @tabelle_color 
ORDER BY [id]&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bY/dCoAgDIXfZdcFrezvWcQLo+FNmUi9f6lDULqYjM+zszMpAaGJ5Wn/3gFUI6H/ulDb8VD8DnAohIkJZqc2ZG8dxwIf2cA93h3Bok36ifXGE9nsMpfrWLswvby2hnK2tYgxRYZd5TsmjLVFSof9zylY3idAqRc=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [index = _t, id = _t, id_color = _t, id_num = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"index", Int64.Type}, {"id", Int64.Type}, {"id_color", type text}, {"id_num", Int64.Type}}),

    #"Grouped Rows" = Table.Group(#"Changed Type", {"id"}, {"all", each Table.AddIndexColumn(Table.Sort(_, {{"id_num", Order.Ascending}, {"id_color", Order.Ascending}}), "# Row", 1)}),

    #"Expanded all" = Table.ExpandTableColumn(#"Grouped Rows", "all", {"id_color", "id_num", "# Row"}, {"id_color", "id_num", "# Row"})
in
    #"Expanded all"&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;All calculation of [#ROW] is conducted under the NON-FILTERING circumstances, whereas RANKX is extremely subject to evaluation context.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 20:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284399#M55984</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2022-01-14T20:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284404#M55985</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp; yes you are absolutely right. ROW_NUMBER() and RANK() are two different windowed functions in SQL. The closest to ROW_NUMBER() what we have in DAX is RANKX(). That is what I meant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again !!! learning a lot from here everyday.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 20:51:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2284404#M55985</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-14T20:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286192#M56082</link>
      <description>&lt;P&gt;I tested this solution but unfortunately it still returns repeated id&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 08:41:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286192#M56082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-17T08:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286745#M56098</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; provide sample data and expected output.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 13:45:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286745#M56098</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-17T13:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: SQL to DAX conversion</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286786#M56101</link>
      <description>&lt;P&gt;I did, but it gave me a very small number. In my table I have 33 thousand records and with the measurement it gave me only 176.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2022 14:00:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SQL-to-DAX-conversion/m-p/2286786#M56101</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-17T14:00:11Z</dc:date>
    </item>
  </channel>
</rss>

