<?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 Sytnax Error Rabbit Hole in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3209886#M42410</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing a report in Power BI Report Builder and I am running into a syntax error that formats just fine on daxformatter, so it must be something else. The issue is with VAR Clusters. Please see below for the query. Interesting enough, if you remove VAR Clusters and VAR __FilterCluster, the query compiles just fine. I have been copy pasting the Circuit section and replacing it with my Cluster stuff. Circuits and Clusters are defined to have the same inputs and the query's are practically identical ( a little different in the Hierarchy order). Any help is greatly appreciated because I am losing my mind at this point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I renamed "Clusters" to "Cluxter" and it works. Real curious as to why Clusters is not accepted?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DEFINE&lt;BR /&gt;VAR __FilterYearTerm =&lt;BR /&gt;TREATAS ( { @YearTerm }, 'YearTerm'[YearTerm] )&lt;BR /&gt;VAR __FilterDistrict =&lt;BR /&gt;TREATAS ( { &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/180860"&gt;@district&lt;/a&gt; }, 'System'[District] )&lt;BR /&gt;VAR Circuits =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[Circuit] ),&lt;BR /&gt;__FilterDistrict,&lt;BR /&gt;'System'[Circuit] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Circuits[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Circuit, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterCircuit =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Circuits, Circuits[Seq] = MINX ( Circuits, Circuits[Seq] ) ),&lt;BR /&gt;[Circuit]&lt;BR /&gt;),&lt;BR /&gt;System[Circuit]&lt;BR /&gt;)&lt;BR /&gt;VAR Clusters =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[Cluster] ),&lt;BR /&gt;__FilterCircuit,&lt;BR /&gt;'System'[Cluster] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Clusters[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Cluster, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterCluster =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Clusters, Clusters[Seq] = MINX ( Clusters, Clusters[Seq] ) ),&lt;BR /&gt;[Cluster]&lt;BR /&gt;),&lt;BR /&gt;System[Cluster]&lt;BR /&gt;)&lt;BR /&gt;VAR Schools =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[SystemKey] ),&lt;BR /&gt;__FilterCluster,&lt;BR /&gt;'System'[SystemKey] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Schools[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @School, 1 ) }, [Value1] &amp;lt;&amp;gt; -99 )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterSchool =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Schools, Schools[Seq] = MINX ( Schools, Schools[Seq] ) ),&lt;BR /&gt;[SystemKey]&lt;BR /&gt;),&lt;BR /&gt;System[SystemKey]&lt;BR /&gt;)&lt;BR /&gt;VAR Phases =&lt;BR /&gt;UNION (&lt;BR /&gt;FILTER (&lt;BR /&gt;SUMMARIZECOLUMNS ( Grade[Phase], "Phases[Seq]", 2 ),&lt;BR /&gt;Grade[Phase] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Phase, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterPhase =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Phases, Phases[Seq] = MINX ( Phases, Phases[Seq] ) ),&lt;BR /&gt;[Phase]&lt;BR /&gt;),&lt;BR /&gt;Grade[Phase]&lt;BR /&gt;)&lt;BR /&gt;VAR Grades =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( Grade[Grade] ),&lt;BR /&gt;__FilterPhase,&lt;BR /&gt;Grade[Grade] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Grades[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Grade, 1 ) }, [Value1] &amp;lt;&amp;gt; -99 )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterGrade =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Grades, Grades[Seq] = MINX ( Grades, Grades[Seq] ) ),&lt;BR /&gt;[Grade]&lt;BR /&gt;),&lt;BR /&gt;Grade[Grade]&lt;BR /&gt;)&lt;BR /&gt;VAR __DS0Core =&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;'YearTerm'[YearTerm],&lt;BR /&gt;'System'[SystemKey],&lt;BR /&gt;'System'[Province],&lt;BR /&gt;'System'[Region],&lt;BR /&gt;'System'[District],&lt;BR /&gt;'System'[Circuit],&lt;BR /&gt;'System'[Cluster],&lt;BR /&gt;'System'[SchoolName],&lt;BR /&gt;'LearnerChart'[LearnerKey],&lt;BR /&gt;'LearnerChart'[Surname],&lt;BR /&gt;'LearnerChart'[FirstName],&lt;BR /&gt;'LearnerChart'[TermPromotion],&lt;BR /&gt;'Grade'[Grade],&lt;BR /&gt;'Grade'[Description],&lt;BR /&gt;'Subject'[Description],&lt;BR /&gt;__FilterGrade,&lt;BR /&gt;__FilterCircuit,&lt;BR /&gt;__FilterCluster,&lt;BR /&gt;__FilterSchool,&lt;BR /&gt;__FilterYearTerm,&lt;BR /&gt;"ReportMarks", [ReportMarks],&lt;BR /&gt;"DaysAbsent", CALCULATE ( AVERAGE ( 'LearnerChart'[DaysAbsent] ) ),&lt;BR /&gt;"AverageReportMark", CALCULATE ( AVERAGE ( 'LearnerChart'[Mark] ) ),&lt;BR /&gt;"ReportMarkLevel", CALCULATE ( AVERAGE ( 'LearnerChart'[RmLevel] ) ),&lt;BR /&gt;"AverageFailures", CALCULATE ( AVERAGE ( 'LearnerChart'[Failures] ) ),&lt;BR /&gt;"AverageNearFailures", CALCULATE ( AVERAGE ( 'LearnerChart'[NearFailuresLC] ) ),&lt;BR /&gt;"AverageDistinctions", CALCULATE ( AVERAGE ( 'LearnerChart'[Distinctions] ) ),&lt;BR /&gt;"AverageAgeVsGradeInt", CALCULATE ( AVERAGE ( 'LearnerChart'[AgeVsGradeInt] ) )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;__DS0Core&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;The Parameter Cluster is defined to be a text input. Here is the query for the Cluster parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;UNION (&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;System[Circuit],&lt;BR /&gt;System[Cluster]&lt;BR /&gt;),&lt;BR /&gt;{ ( "!All", "All" ) }&lt;BR /&gt;)&lt;BR /&gt;ORDER BY System[Cluster]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query for Circuit Parameter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;UNION (&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;System[District],&lt;BR /&gt;System[Circuit]&lt;BR /&gt;),&lt;BR /&gt;{ ( "!All", "All" ) }&lt;BR /&gt;)&lt;BR /&gt;ORDER BY System[Circuit]&lt;/P&gt;</description>
    <pubDate>Thu, 27 Apr 2023 18:03:10 GMT</pubDate>
    <dc:creator>MacBI</dc:creator>
    <dc:date>2023-04-27T18:03:10Z</dc:date>
    <item>
      <title>Sytnax Error Rabbit Hole</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3209886#M42410</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing a report in Power BI Report Builder and I am running into a syntax error that formats just fine on daxformatter, so it must be something else. The issue is with VAR Clusters. Please see below for the query. Interesting enough, if you remove VAR Clusters and VAR __FilterCluster, the query compiles just fine. I have been copy pasting the Circuit section and replacing it with my Cluster stuff. Circuits and Clusters are defined to have the same inputs and the query's are practically identical ( a little different in the Hierarchy order). Any help is greatly appreciated because I am losing my mind at this point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I renamed "Clusters" to "Cluxter" and it works. Real curious as to why Clusters is not accepted?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DEFINE&lt;BR /&gt;VAR __FilterYearTerm =&lt;BR /&gt;TREATAS ( { @YearTerm }, 'YearTerm'[YearTerm] )&lt;BR /&gt;VAR __FilterDistrict =&lt;BR /&gt;TREATAS ( { &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/180860"&gt;@district&lt;/a&gt; }, 'System'[District] )&lt;BR /&gt;VAR Circuits =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[Circuit] ),&lt;BR /&gt;__FilterDistrict,&lt;BR /&gt;'System'[Circuit] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Circuits[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Circuit, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterCircuit =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Circuits, Circuits[Seq] = MINX ( Circuits, Circuits[Seq] ) ),&lt;BR /&gt;[Circuit]&lt;BR /&gt;),&lt;BR /&gt;System[Circuit]&lt;BR /&gt;)&lt;BR /&gt;VAR Clusters =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[Cluster] ),&lt;BR /&gt;__FilterCircuit,&lt;BR /&gt;'System'[Cluster] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Clusters[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Cluster, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterCluster =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Clusters, Clusters[Seq] = MINX ( Clusters, Clusters[Seq] ) ),&lt;BR /&gt;[Cluster]&lt;BR /&gt;),&lt;BR /&gt;System[Cluster]&lt;BR /&gt;)&lt;BR /&gt;VAR Schools =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( 'System'[SystemKey] ),&lt;BR /&gt;__FilterCluster,&lt;BR /&gt;'System'[SystemKey] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Schools[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @School, 1 ) }, [Value1] &amp;lt;&amp;gt; -99 )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterSchool =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Schools, Schools[Seq] = MINX ( Schools, Schools[Seq] ) ),&lt;BR /&gt;[SystemKey]&lt;BR /&gt;),&lt;BR /&gt;System[SystemKey]&lt;BR /&gt;)&lt;BR /&gt;VAR Phases =&lt;BR /&gt;UNION (&lt;BR /&gt;FILTER (&lt;BR /&gt;SUMMARIZECOLUMNS ( Grade[Phase], "Phases[Seq]", 2 ),&lt;BR /&gt;Grade[Phase] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Phase, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterPhase =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Phases, Phases[Seq] = MINX ( Phases, Phases[Seq] ) ),&lt;BR /&gt;[Phase]&lt;BR /&gt;),&lt;BR /&gt;Grade[Phase]&lt;BR /&gt;)&lt;BR /&gt;VAR Grades =&lt;BR /&gt;UNION (&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES ( Grade[Grade] ),&lt;BR /&gt;__FilterPhase,&lt;BR /&gt;Grade[Grade] &amp;lt;&amp;gt; BLANK ()&lt;BR /&gt;),&lt;BR /&gt;"Grades[Seq]", 2&lt;BR /&gt;),&lt;BR /&gt;FILTER ( { ( @Grade, 1 ) }, [Value1] &amp;lt;&amp;gt; -99 )&lt;BR /&gt;)&lt;BR /&gt;VAR __FilterGrade =&lt;BR /&gt;TREATAS (&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FILTER ( Grades, Grades[Seq] = MINX ( Grades, Grades[Seq] ) ),&lt;BR /&gt;[Grade]&lt;BR /&gt;),&lt;BR /&gt;Grade[Grade]&lt;BR /&gt;)&lt;BR /&gt;VAR __DS0Core =&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;'YearTerm'[YearTerm],&lt;BR /&gt;'System'[SystemKey],&lt;BR /&gt;'System'[Province],&lt;BR /&gt;'System'[Region],&lt;BR /&gt;'System'[District],&lt;BR /&gt;'System'[Circuit],&lt;BR /&gt;'System'[Cluster],&lt;BR /&gt;'System'[SchoolName],&lt;BR /&gt;'LearnerChart'[LearnerKey],&lt;BR /&gt;'LearnerChart'[Surname],&lt;BR /&gt;'LearnerChart'[FirstName],&lt;BR /&gt;'LearnerChart'[TermPromotion],&lt;BR /&gt;'Grade'[Grade],&lt;BR /&gt;'Grade'[Description],&lt;BR /&gt;'Subject'[Description],&lt;BR /&gt;__FilterGrade,&lt;BR /&gt;__FilterCircuit,&lt;BR /&gt;__FilterCluster,&lt;BR /&gt;__FilterSchool,&lt;BR /&gt;__FilterYearTerm,&lt;BR /&gt;"ReportMarks", [ReportMarks],&lt;BR /&gt;"DaysAbsent", CALCULATE ( AVERAGE ( 'LearnerChart'[DaysAbsent] ) ),&lt;BR /&gt;"AverageReportMark", CALCULATE ( AVERAGE ( 'LearnerChart'[Mark] ) ),&lt;BR /&gt;"ReportMarkLevel", CALCULATE ( AVERAGE ( 'LearnerChart'[RmLevel] ) ),&lt;BR /&gt;"AverageFailures", CALCULATE ( AVERAGE ( 'LearnerChart'[Failures] ) ),&lt;BR /&gt;"AverageNearFailures", CALCULATE ( AVERAGE ( 'LearnerChart'[NearFailuresLC] ) ),&lt;BR /&gt;"AverageDistinctions", CALCULATE ( AVERAGE ( 'LearnerChart'[Distinctions] ) ),&lt;BR /&gt;"AverageAgeVsGradeInt", CALCULATE ( AVERAGE ( 'LearnerChart'[AgeVsGradeInt] ) )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;__DS0Core&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;The Parameter Cluster is defined to be a text input. Here is the query for the Cluster parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;UNION (&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;System[Circuit],&lt;BR /&gt;System[Cluster]&lt;BR /&gt;),&lt;BR /&gt;{ ( "!All", "All" ) }&lt;BR /&gt;)&lt;BR /&gt;ORDER BY System[Cluster]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query for Circuit Parameter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EVALUATE&lt;BR /&gt;UNION (&lt;BR /&gt;SUMMARIZECOLUMNS (&lt;BR /&gt;System[District],&lt;BR /&gt;System[Circuit]&lt;BR /&gt;),&lt;BR /&gt;{ ( "!All", "All" ) }&lt;BR /&gt;)&lt;BR /&gt;ORDER BY System[Circuit]&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 18:03:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3209886#M42410</guid>
      <dc:creator>MacBI</dc:creator>
      <dc:date>2023-04-27T18:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sytnax Error Rabbit Hole</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3209920#M42411</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/526383"&gt;@MacBI&lt;/a&gt;&amp;nbsp;You are trying to access columns from a Variable which isn't supported.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Circuits&lt;/SPAN&gt;&lt;SPAN&gt;[Seq]&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;MINX&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Circuits&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Circuits&lt;/SPAN&gt;&lt;SPAN&gt;[Seq]&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Circuits[Seq] isn't a valid syntax.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 18:14:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3209920#M42411</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2023-04-27T18:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sytnax Error Rabbit Hole</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3210074#M42414</link>
      <description>&lt;P&gt;Hmm, I'm not sure I agree with you. In my variable Circuits I have this defined.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR Circuits =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UNION (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ADDCOLUMNS (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATETABLE (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES ( 'System'[Circuit] ),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;__FilterDistrict,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'System'[Circuit] &amp;lt;&amp;gt; BLANK ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Circuits[Seq]", 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FILTER ( { ( @Circuit, 1 ) }, [Value1] &amp;lt;&amp;gt; "All" )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As mentioned above, I renamed my variable "Clusters" to "Cluxter" and everything compiled. My paginated reports are now working as intended.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 20:01:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3210074#M42414</guid>
      <dc:creator>MacBI</dc:creator>
      <dc:date>2023-04-27T20:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sytnax Error Rabbit Hole</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3210848#M42426</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/526383"&gt;@MacBI&lt;/a&gt;&amp;nbsp;You're right. I used DAX Formatter it assumed that those were variable refrerences so I relied on it, didn't notice you used the Table[Column] notation in the new column name.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AntrikshSharma_0-1682672051758.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/907962i45894BB801B16E50/image-size/large?v=v2&amp;amp;px=999" role="button" title="AntrikshSharma_0-1682672051758.png" alt="AntrikshSharma_0-1682672051758.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The best practice while naming columns is to use "@" so that readers can easily distinguish between Model Column, Virtual Column and a Measure.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AntrikshSharma_1-1682672383463.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/907974i06A9CC01ECE0991F/image-size/large?v=v2&amp;amp;px=999" role="button" title="AntrikshSharma_1-1682672383463.png" alt="AntrikshSharma_1-1682672383463.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 09:00:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3210848#M42426</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2023-04-28T09:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sytnax Error Rabbit Hole</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3211602#M42436</link>
      <description>&lt;P&gt;Got it. I will start doing that going forward, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:40:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sytnax-Error-Rabbit-Hole/m-p/3211602#M42436</guid>
      <dc:creator>Mactoff</dc:creator>
      <dc:date>2023-04-28T16:40:08Z</dc:date>
    </item>
  </channel>
</rss>

