<?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: Calculation Groups: Interaction of rows and columns in a grid in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653184#M178131</link>
    <description>&lt;P&gt;Hello everyone - Thanks for your help.&amp;nbsp; &amp;nbsp;I have been able to move this problem on, but not resolve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROBLEM 1 - CALCULATION GROUPS IN ROWS + MEASURES IN COLUMNS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can now get this to work provided I write the calculations for the rows "longhand" in the calculation group.&amp;nbsp;&amp;nbsp;So 'Income' and 'Cost of Sales' work but 'Test Using Measure' doesn't (it returns no data i.e. blank row) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculation Group (used in rows):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the calculation group:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income")
Cost of Sales: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales")
Test Using Measure: [Income (Test for CG)] &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where the [Income (Test for CG)] is defined as follows:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Identical to calculation used on income line&lt;/EM&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income (Test for CG) = CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would prefer to use measures in the calculation greoup so that I do not need to define and maintain multiple calculations for Gross Margin, Gross Margin % etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif"&gt;Can measures be used on both axis if they are complementary (i.e. do not use opposing filters etc)?&amp;nbsp; If so, how?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROBLEM 2 - CALCULATION GROUPS IN COLUMNS + MEASURES IN ROWS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarly, when I use a calculation group in the columns I need to define the formulas "longhand" in teh calculation group- this works fine provided there is a suitable time intelligence function, but if the calculation requires two or more functions to be combined (e.g. 'Actual-1 YTD' and 'Actual-2 YTD') I can't make this work in a calculation group.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Using Measures (works fine):&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the measures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Actual Calc = CALCULATE([GL Value], 'GL Data'[Scenario] = "Actual")
Actual CM = CALCULATE ( [Actual Calc], DATESMTD('Fiscal Calendar'[Date]))
Actual LM = CALCULATE ( [Actual Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual NM = CALCULATE ( [Actual Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual Qtd = CALCULATE ( [Actual Calc], DATESQTD('Fiscal Calendar'[Date]))
Actual Ytd = CALCULATE ( [Actual Calc], DATESYTD('Fiscal Calendar'[Date], "3/31"))

Actual-1 Calc = CALCULATE ( [Actual Calc], SAMEPERIODLASTYEAR ( 'Fiscal Calendar'[Date] ) )
Actual-1 CM = TOTALMTD([Actual-1 Calc], 'Fiscal Calendar'[Date])
Actual-1 LM = CALCULATE ( [Actual-1 Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual-1 NM = CALCULATE ( [Actual-1 Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual-1 Qtd = TOTALQTD([Actual-1 Calc], 'Fiscal Calendar'[Date])
Actual-1 Ytd = TOTALYTD([Actual-1 Calc], 'Fiscal Calendar'[Date], "3/31")

Actual-2 Calc = CALCULATE ( [Actual Calc], DATEADD ( 'Fiscal Calendar'[Date], -2, YEAR) )
Actual-2 CM = TOTALMTD([Actual-2 Calc], 'Fiscal Calendar'[Date])
Actual-2 LM = CALCULATE ( [Actual-2 Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual-2 NM = CALCULATE ( [Actual-2 Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual-2 Qtd = TOTALQTD([Actual-2 Calc], 'Fiscal Calendar'[Date])
Actual-2 Ytd = TOTALYTD([Actual-2 Calc], 'Fiscal Calendar'[Date], "3/31")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;With a Calculation Group:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculation Group (used in columns):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the calculation group:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;This Mth: CALCULATE( SELECTEDMEASURE() , DATESMTD('Fiscal Calendar'[Date]) , 'GL Data'[Scenario] = "Actual")
Last Mth: CALCULATE (SELECTEDMEASURE(),PREVIOUSMONTH('Fiscal Calendar'[Date]),'GL Data'[Scenario] = "Actual")
This Mth YTD: CALCULATE(SELECTEDMEASURE(),DATESYTD('Fiscal Calendar'[Date],"3/31"),'GL Data'[Scenario] = "Actual")
Last Yr: CALCULATE (SELECTEDMEASURE(),SAMEPERIODLASTYEAR ('Fiscal Calendar'[Date]),'GL Data'[Scenario] = "Actual")

Last Yr YTD: REQUIRE MEQUIVALENT OF ACTUAL-1 YTD MEASURE (WILL ALSO NEED ACTUAL-2 YTD)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample code for the measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income = CALCULATE ([GL Value],'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income") 
Cost of Sales = CALCULATE ([GL Value], 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales" )
Gross Margin (ST) = CALCULATE ([Income] + [Cost of Sales], all('GL Map Acct Level 0') )
Gross Margin % = CALCULATE ( DIVIDE ([Gross Margin (ST)] , [Income] , "-" ), all('GL Map Acct Level 0') )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms, sans-serif"&gt;How can I write formula equivalent to 'Actual-1 YTD' and 'Actual-02 YTD' in a calculation group?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NB: Data shown is random test data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1250532" data-lia-user-login="v-kathullac" class="lia-mention lia-mention-user"&gt;v-kathullac&lt;/a&gt;&amp;nbsp;,&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Apr 2025 11:42:31 GMT</pubDate>
    <dc:creator>Andrew-HLP</dc:creator>
    <dc:date>2025-04-15T11:42:31Z</dc:date>
    <item>
      <title>Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625918#M177067</link>
      <description>&lt;P&gt;Hello.&amp;nbsp; I am exploring the use of CALCULATION GROUPS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a group called "Income Statement v2" which has four calculation items...&lt;/P&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;each of which is linked to a mesure of the same name...&lt;/P&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;My page has filters for fiscal year and fiscal month which work exactly as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My matrix&amp;nbsp; uses the calculation group in the rows and three other measures in the columns:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Where:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;GL Value = &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;('GL Data'[Value]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Actual Calc =&lt;/SPAN&gt; &lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;[GL Value]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'GL Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Scenario]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Actual"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Budget Calc = &lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt; ([GL Value],'GL Data'[Scenario] = &lt;/SPAN&gt;&lt;SPAN&gt;"Budget"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;(these measures work fine in other contexts).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I was expecting teh values in the matrix&amp;nbsp; to reflect the relevant row and column selections but they do not.&amp;nbsp; The scenario filter is ignored (If I add one to the page then all three columns show whatever is selected on the page).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Where have I gone wrong?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;THANK YOU FOR YOUR HELP!&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:12:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625918#M177067</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-03-26T13:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625922#M177069</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="922412" data-lia-user-login="Andrew-HLP" class="lia-mention lia-mention-user"&gt;Andrew-HLP&lt;/a&gt;&amp;nbsp;When defining calculation items, use the SELECTEDMEASURE function to dynamically reference the measure being modified. For example&lt;/P&gt;
&lt;P&gt;CALCULATE(SELECTEDMEASURE(), 'GL Data'[Scenario] = "Actual")&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:13:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625922#M177069</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-26T13:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625942#M177074</link>
      <description>&lt;P&gt;Thanks for the speedy response.&amp;nbsp; Unfortunately that returns the same results...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Formula I used...&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Test Actual =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDMEASURE&lt;/SPAN&gt;&lt;SPAN&gt;(), &lt;/SPAN&gt;&lt;SPAN&gt;'GL Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Scenario]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Actual"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Results:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;P.S.&amp;nbsp; Calculation of [Income] and similar measures looks like this (have tried both options)&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Income =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;[GL Value]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'GL Map Accounts'&lt;/SPAN&gt;&lt;SPAN&gt;[Account Group 1 Desc]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Income"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; ) &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Income =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;sum&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'GL Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Value]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;'GL Map Accounts'&lt;/SPAN&gt;&lt;SPAN&gt;[Account Group 1 Desc]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"Income"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; ) &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:33:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4625942#M177074</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-03-26T13:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4627536#M177149</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="922412" data-lia-user-login="Andrew-HLP" class="lia-mention lia-mention-user"&gt;Andrew-HLP&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like the Calculation Group might be overriding the filter context. You could try modifying your Calculation Group formula to include the &lt;STRONG&gt;KEEPFILTERS&lt;/STRONG&gt; function to help preserve the existing filters.&lt;/P&gt;
&lt;P&gt;If the suggested solution doesn't resolve your issue, please share sample data or a PBIX file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 12:30:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4627536#M177149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-27T12:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4630322#M177264</link>
      <description>&lt;P&gt;Thank you, but unfortunately I couldnt get this to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having a few other issues with filter context (&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Row-amp-Filter-Context-DAX-formula/m-p/4630315" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Row-amp-Filter-Context-DAX-formula/m-p/4630315&lt;/A&gt;) so once I resolve these I will try again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks fo ryour help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Sun, 30 Mar 2025 11:44:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4630322#M177264</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-03-30T11:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4638344#M177591</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="922412" data-lia-user-login="Andrew-HLP" class="lia-mention lia-mention-user"&gt;Andrew-HLP&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Could you please confirm if this issue has been resolved? If it has, kindly mark the helpful reply and "&lt;STRONG&gt;Accept as a Solution&lt;/STRONG&gt;".And additionally give '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;' &lt;BR /&gt;This will assist other community members in solving similar problems more quickly.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;Chaithanya.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 13:17:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4638344#M177591</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2025-04-04T13:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4638415#M177593</link>
      <description>&lt;P&gt;Hello - thanks for following up.&amp;nbsp; It is still open.&amp;nbsp; I will post some more updated information in the next few days.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 13:47:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4638415#M177593</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-04-04T13:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4644455#M177823</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/922412" target="_blank"&gt;@Andrew-HLP&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you please confirm if this issue has been resolved? If it has, kindly mark the helpful reply and "&lt;/SPAN&gt;&lt;STRONG&gt;Accept as a Solution&lt;/STRONG&gt;&lt;SPAN&gt;".And additionally give '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This will assist other community members in solving similar problems more quickly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chaithanya.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 07:17:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4644455#M177823</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2025-04-09T07:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653184#M178131</link>
      <description>&lt;P&gt;Hello everyone - Thanks for your help.&amp;nbsp; &amp;nbsp;I have been able to move this problem on, but not resolve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROBLEM 1 - CALCULATION GROUPS IN ROWS + MEASURES IN COLUMNS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can now get this to work provided I write the calculations for the rows "longhand" in the calculation group.&amp;nbsp;&amp;nbsp;So 'Income' and 'Cost of Sales' work but 'Test Using Measure' doesn't (it returns no data i.e. blank row) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculation Group (used in rows):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the calculation group:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income")
Cost of Sales: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales")
Test Using Measure: [Income (Test for CG)] &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where the [Income (Test for CG)] is defined as follows:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Identical to calculation used on income line&lt;/EM&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income (Test for CG) = CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would prefer to use measures in the calculation greoup so that I do not need to define and maintain multiple calculations for Gross Margin, Gross Margin % etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif"&gt;Can measures be used on both axis if they are complementary (i.e. do not use opposing filters etc)?&amp;nbsp; If so, how?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROBLEM 2 - CALCULATION GROUPS IN COLUMNS + MEASURES IN ROWS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarly, when I use a calculation group in the columns I need to define the formulas "longhand" in teh calculation group- this works fine provided there is a suitable time intelligence function, but if the calculation requires two or more functions to be combined (e.g. 'Actual-1 YTD' and 'Actual-2 YTD') I can't make this work in a calculation group.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Using Measures (works fine):&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the measures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Actual Calc = CALCULATE([GL Value], 'GL Data'[Scenario] = "Actual")
Actual CM = CALCULATE ( [Actual Calc], DATESMTD('Fiscal Calendar'[Date]))
Actual LM = CALCULATE ( [Actual Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual NM = CALCULATE ( [Actual Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual Qtd = CALCULATE ( [Actual Calc], DATESQTD('Fiscal Calendar'[Date]))
Actual Ytd = CALCULATE ( [Actual Calc], DATESYTD('Fiscal Calendar'[Date], "3/31"))

Actual-1 Calc = CALCULATE ( [Actual Calc], SAMEPERIODLASTYEAR ( 'Fiscal Calendar'[Date] ) )
Actual-1 CM = TOTALMTD([Actual-1 Calc], 'Fiscal Calendar'[Date])
Actual-1 LM = CALCULATE ( [Actual-1 Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual-1 NM = CALCULATE ( [Actual-1 Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual-1 Qtd = TOTALQTD([Actual-1 Calc], 'Fiscal Calendar'[Date])
Actual-1 Ytd = TOTALYTD([Actual-1 Calc], 'Fiscal Calendar'[Date], "3/31")

Actual-2 Calc = CALCULATE ( [Actual Calc], DATEADD ( 'Fiscal Calendar'[Date], -2, YEAR) )
Actual-2 CM = TOTALMTD([Actual-2 Calc], 'Fiscal Calendar'[Date])
Actual-2 LM = CALCULATE ( [Actual-2 Calc], PREVIOUSMONTH('Fiscal Calendar'[Date]))
Actual-2 NM = CALCULATE ( [Actual-2 Calc], NEXTMONTH('Fiscal Calendar'[Date]))
Actual-2 Qtd = TOTALQTD([Actual-2 Calc], 'Fiscal Calendar'[Date])
Actual-2 Ytd = TOTALYTD([Actual-2 Calc], 'Fiscal Calendar'[Date], "3/31")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;With a Calculation Group:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculation Group (used in columns):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code for the calculation group:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;This Mth: CALCULATE( SELECTEDMEASURE() , DATESMTD('Fiscal Calendar'[Date]) , 'GL Data'[Scenario] = "Actual")
Last Mth: CALCULATE (SELECTEDMEASURE(),PREVIOUSMONTH('Fiscal Calendar'[Date]),'GL Data'[Scenario] = "Actual")
This Mth YTD: CALCULATE(SELECTEDMEASURE(),DATESYTD('Fiscal Calendar'[Date],"3/31"),'GL Data'[Scenario] = "Actual")
Last Yr: CALCULATE (SELECTEDMEASURE(),SAMEPERIODLASTYEAR ('Fiscal Calendar'[Date]),'GL Data'[Scenario] = "Actual")

Last Yr YTD: REQUIRE MEQUIVALENT OF ACTUAL-1 YTD MEASURE (WILL ALSO NEED ACTUAL-2 YTD)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample code for the measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income = CALCULATE ([GL Value],'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income") 
Cost of Sales = CALCULATE ([GL Value], 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales" )
Gross Margin (ST) = CALCULATE ([Income] + [Cost of Sales], all('GL Map Acct Level 0') )
Gross Margin % = CALCULATE ( DIVIDE ([Gross Margin (ST)] , [Income] , "-" ), all('GL Map Acct Level 0') )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms, sans-serif"&gt;How can I write formula equivalent to 'Actual-1 YTD' and 'Actual-02 YTD' in a calculation group?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NB: Data shown is random test data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1250532" data-lia-user-login="v-kathullac" class="lia-mention lia-mention-user"&gt;v-kathullac&lt;/a&gt;&amp;nbsp;,&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 11:42:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653184#M178131</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-04-15T11:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653185#M178132</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello - thanks for following up.&amp;nbsp; It is still open.&amp;nbsp; I have posted some additional information asking for further help - see problems 1 and 2 above.&amp;nbsp; Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 11:40:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653185#M178132</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-04-15T11:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653939#M178159</link>
      <description>&lt;P&gt;Not a complete solution as such but I have stumbled across the ability to calculate items based on other items in the calculation group (&lt;EM&gt;sideways recursion&lt;/EM&gt;) rather than write out each calculation "longhand" (so for example 'Gross Margin %' calculation is simplified as it can use teh value we have already calculated for 'Gross Margin'.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculation Group:&lt;/P&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;Code for the Calculation Group:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Income: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income")

Cost of Sales: CALCULATE( SELECTEDMEASURE() , 'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales")

Gross Margin: 
CALCULATE( SELECTEDMEASURE() , 'CG: Report Income Statement V2 TEST'[Income Statement] = "Income" ) +
CALCULATE( SELECTEDMEASURE() , 'CG: Report Income Statement V2 TEST'[Income Statement] = "Cost of Sales" ) 

Gross Margin %:
DIVIDE
(CALCULATE(SELECTEDMEASURE(),'CG: Report Income Statement V2 TEST'[Income Statement] = "Gross Margin" ),
CALCULATE(SELECTEDMEASURE(),'CG: Report Income Statement V2 TEST'[Income Statement] = "Income" ),
"-") &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update: This doesnt work as well as I hoped.&amp;nbsp; If I have percentages in the columns (e.g. percentage variances) teh formula in the calculation group adds the percentages (e.g. % Gross Margin Variance is sum of sales variance + cost of sales varaiance rather than calculated based on the values in the Gross Margin line.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get around this I changed the expression for gross margin so that instead of adding two differewnt calculate statemenst together I adjusted teh filters to filter on "Income" or "Cost of Sales" but for reasons I cannot determine a second filter doesnt work when referring to other lines in the calculation group so I have had to revert to the fuller version of teh calculations:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Gross Margin: 
CALCULATE( SELECTEDMEASURE() , 
    KEEPFILTERS(
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income" || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales"
    ) 
)

Gross Profit: 
CALCULATE( SELECTEDMEASURE() , 
    KEEPFILTERS(
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income" || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales"  || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Overheads"     
    ) 
)

Net Profit:
CALCULATE( SELECTEDMEASURE() , 
    KEEPFILTERS(
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income" || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales"  || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Overheads" ||     
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "ABP Distributions"
    ) 
)

Retained Profit: 
CALCULATE( SELECTEDMEASURE() , 
    KEEPFILTERS(
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Income" || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Cost of Sales"  || 
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "Overheads" ||     
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "ABP Distributions" ||  
    'GL Map Acct Level 3'[Acct Level 3 Desc] = "SHP Distributions"
    ) 
)

&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can still calculate 'Gross Margin %' etc as before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;More info here:&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/analysis-services/tabular-models/calculation-groups?view=asallproducts-allversions#sideways-recursion" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/analysis-services/tabular-models/calculation-groups?view=asallproducts-allversions#sideways-recursion&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 17:55:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4653939#M178159</guid>
      <dc:creator>Andrew-HLP</dc:creator>
      <dc:date>2025-04-15T17:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4655038#M178204</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="922412" data-lia-user-login="Andrew-HLP" class="lia-mention lia-mention-user"&gt;Andrew-HLP&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you still facing the issue if yes&amp;nbsp; can you share sample pbix file to work around&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Chaithanya.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 06:36:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4655038#M178204</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2025-04-16T06:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Groups: Interaction of rows and columns in a grid</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4657913#M178345</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/922412" target="_blank"&gt;@Andrew-HLP&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we wanted to kindly follow up to check if the solution is fixed, If it is solved, please mark the helpful reply or share your solution it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Chaithanya.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 16:02:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculation-Groups-Interaction-of-rows-and-columns-in-a-grid/m-p/4657913#M178345</guid>
      <dc:creator>v-kathullac</dc:creator>
      <dc:date>2025-04-17T16:02:08Z</dc:date>
    </item>
  </channel>
</rss>

