<?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: Matrix table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923124#M186864</link>
    <description>&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;1) Create a disconnected “Column Layout” table&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;You can do this in DAX (or Power Query). This version is easiest to understand:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;A) Disconnected table for Metrics&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;Metrics =
DATATABLE (
    "Metric", STRING,
    {
        { "OTD" },
        { "NET SALES" },
        { "COST of sales" },
        { "gross" }
    }
)&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;B) Disconnected table for Months&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;Months =
DISTINCT (
    SELECTCOLUMNS (
        'Date',
        "MonthStart", DATE ( YEAR('Date'[Date]), MONTH('Date'[Date]), 1 ),
        "MonthLabel", FORMAT ( 'Date'[Date], "MMM-yy" )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;C) Crossjoin to create the final matrix columns table&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;MatrixColumns =
CROSSJOIN (
    SELECTCOLUMNS ( Months, "MonthStart", [MonthStart], "MonthLabel", [MonthLabel] ),
    SELECTCOLUMNS ( Metrics, "Metric", Metrics[Metric] )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;No relationships from MatrixColumns to your model.&lt;/FONT&gt;&lt;/P&gt;&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;2) Put fields into the Matrix&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Rows: Region, Store, Product&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Columns: MatrixColumns[MonthLabel] then MatrixColumns[Metric]&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Values: the single measure below&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;3) Create one “dynamic value” measure (TREATAS + SWITCH)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;LI-CODE lang="markup"&gt;Matrix Value =
VAR _MonthStart = SELECTEDVALUE ( MatrixColumns[MonthStart] )
VAR _Metric     = SELECTEDVALUE ( MatrixColumns[Metric] )
RETURN
SWITCH (
    TRUE(),
    _Metric = "OTD",
        CALCULATE ( [OTD], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "NET SALES",
        CALCULATE ( [Net Sales], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "COST of sales",
        CALCULATE ( [Cost of Sales], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "gross",
        CALCULATE ( [Gross], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;This forces the correct month filter without needing the month to come from your real Date table (because the month is coming from the disconnected table).&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Jan 2026 06:54:14 GMT</pubDate>
    <dc:creator>cengizhanarslan</dc:creator>
    <dc:date>2026-01-22T06:54:14Z</dc:date>
    <item>
      <title>Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4922977#M186859</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Hi, is this possible to do in matrix table&lt;/P&gt;&lt;P&gt;my current setup is two separate tables then hide the region store and product for the 2nd table.&lt;/P&gt;&lt;P&gt;is there a way to have 1 only table for this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample :&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;Thanks.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 22 Jan 2026 02:20:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4922977#M186859</guid>
      <dc:creator>Easley06</dc:creator>
      <dc:date>2026-01-22T02:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923092#M186861</link>
      <description>&lt;P&gt;Hii&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357960" data-lia-user-login="Easley06" class="lia-mention lia-mention-user"&gt;Easley06&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Microsoft Power BI, you can keep Region / Store / Product only at the top level and hide them for subsequent month columns by controlling visibility with ISINSCOPE() (or HASONEVALUE) inside your measures. The idea is to return BLANK for row headers when the matrix is expanded into month columns, so it visually behaves like one table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Net Sales Visible :=
IF (
    ISINSCOPE ( 'Date'[Month] ),
    [Net Sales],
    BLANK ()
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jan 2026 06:11:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923092#M186861</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2026-01-22T06:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923124#M186864</link>
      <description>&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;1) Create a disconnected “Column Layout” table&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;You can do this in DAX (or Power Query). This version is easiest to understand:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;A) Disconnected table for Metrics&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;Metrics =
DATATABLE (
    "Metric", STRING,
    {
        { "OTD" },
        { "NET SALES" },
        { "COST of sales" },
        { "gross" }
    }
)&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;B) Disconnected table for Months&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;Months =
DISTINCT (
    SELECTCOLUMNS (
        'Date',
        "MonthStart", DATE ( YEAR('Date'[Date]), MONTH('Date'[Date]), 1 ),
        "MonthLabel", FORMAT ( 'Date'[Date], "MMM-yy" )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;C) Crossjoin to create the final matrix columns table&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;&lt;LI-CODE lang="markup"&gt;MatrixColumns =
CROSSJOIN (
    SELECTCOLUMNS ( Months, "MonthStart", [MonthStart], "MonthLabel", [MonthLabel] ),
    SELECTCOLUMNS ( Metrics, "Metric", Metrics[Metric] )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;No relationships from MatrixColumns to your model.&lt;/FONT&gt;&lt;/P&gt;&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;2) Put fields into the Matrix&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Rows: Region, Store, Product&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Columns: MatrixColumns[MonthLabel] then MatrixColumns[Metric]&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;Values: the single measure below&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;&lt;H2&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;3) Create one “dynamic value” measure (TREATAS + SWITCH)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H2&gt;&lt;LI-CODE lang="markup"&gt;Matrix Value =
VAR _MonthStart = SELECTEDVALUE ( MatrixColumns[MonthStart] )
VAR _Metric     = SELECTEDVALUE ( MatrixColumns[Metric] )
RETURN
SWITCH (
    TRUE(),
    _Metric = "OTD",
        CALCULATE ( [OTD], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "NET SALES",
        CALCULATE ( [Net Sales], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "COST of sales",
        CALCULATE ( [Cost of Sales], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) ),

    _Metric = "gross",
        CALCULATE ( [Gross], TREATAS ( { _MonthStart }, 'Date'[MonthStart] ) )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;This forces the correct month filter without needing the month to come from your real Date table (because the month is coming from the disconnected table).&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jan 2026 06:54:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923124#M186864</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-01-22T06:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923911#M186894</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for the result im getting only blank values..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2026 05:30:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4923911#M186894</guid>
      <dc:creator>Easley06</dc:creator>
      <dc:date>2026-01-23T05:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926470#M186912</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357960" data-lia-user-login="Easley06" class="lia-mention lia-mention-user"&gt;Easley06&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;can you show a bit of detail of what you actually implemented (and resulted in these blanks)? There must be something going wrong with names, maybe? Or something else. We need to find out.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jan 2026 17:07:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926470#M186912</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2026-01-24T17:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926611#M186916</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357960" data-lia-user-login="Easley06" class="lia-mention lia-mention-user"&gt;Easley06&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please provide the sample data of tables, as you are noticing the blank data for&amp;nbsp; the visual screenshot you shared. Thank You!&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jan 2026 13:22:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926611#M186916</guid>
      <dc:creator>krishnakanth240</dc:creator>
      <dc:date>2026-01-25T13:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926685#M186917</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357960" data-lia-user-login="Easley06" class="lia-mention lia-mention-user"&gt;Easley06&lt;/a&gt;,&amp;nbsp;this seems doable, can you please share the sample pbix file if possible?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jan 2026 17:08:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4926685#M186917</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2026-01-25T17:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4927849#M186943</link>
      <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="824538" data-lia-user-login="rohit1991" class="lia-mention lia-mention-user"&gt;rohit1991&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="764617" data-lia-user-login="krishnakanth240" class="lia-mention lia-mention-user"&gt;krishnakanth240&lt;/a&gt;, and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;&amp;nbsp;for your responses.&lt;BR /&gt;&lt;BR /&gt;Hi Easley06,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thankyou for the update.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;As suggested by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="764617" data-lia-user-login="krishnakanth240" class="lia-mention lia-mention-user"&gt;krishnakanth240&lt;/a&gt;, and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645372" data-lia-user-login="techies" class="lia-mention lia-mention-user"&gt;techies&lt;/a&gt;,&amp;nbsp;please provide sample data that clearly demonstrates your issue or query in a structured format (not as an image) to help us understand and resolve the matter. Ensure that the data is relevant, free from any sensitive information, and directly related to the issue. Additionally, please share the expected outcome based on the given example.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 06:50:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4927849#M186943</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2026-01-27T06:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4963526#M187022</link>
      <description>&lt;P&gt;Hi Easley06,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We are writing to follow up and ask whether the issue has been resolved on your end. If it remains unresolved, please provide sample data that clearly demonstrates the problem or question in a structured (non-image) format so we can better understand and address it. Ensure the data is relevant, does not contain any sensitive information, and directly relates to the issue. Also include the expected outcome based on the provided example.&lt;/P&gt;
&lt;P&gt;If you have any further questions, please feel free to contact the Microsoft Fabric community.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 06:56:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/4963526#M187022</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2026-01-30T06:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/5045813#M187181</link>
      <description>&lt;P&gt;I can help you&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 20:49:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/5045813#M187181</guid>
      <dc:creator>SaidGamalgx</dc:creator>
      <dc:date>2026-02-17T20:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Matrix table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/5045830#M187182</link>
      <description>&lt;P&gt;I can help you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 20:52:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Matrix-table/m-p/5045830#M187182</guid>
      <dc:creator>SaidGamalgx</dc:creator>
      <dc:date>2026-02-17T20:52:47Z</dc:date>
    </item>
  </channel>
</rss>

