<?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: How to evaluate measure and several dimensions? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310538#M22862</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , what are trying to achieve here. If you have tables and they are related, filter from dimension slicer will be taken care of by power bi?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Aug 2020 10:32:20 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2020-08-20T10:32:20Z</dc:date>
    <item>
      <title>How to evaluate measure and several dimensions?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310489#M22859</link>
      <description>&lt;P&gt;I want to check a new measure using DAX query.&lt;/P&gt;&lt;P&gt;In model I have one fact table and three dimension tables. In excel PIvotTable I can put a measure to the Values section and put 3 separate dimension table attributes to Rows section. I would like to do the same query using DAX.&lt;BR /&gt;Probably, the query should be looks like this example (it doesn't work):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EVALUATE (
	FILTER (
		ADDCOLUMNS (
			VALUES( DimensionTable1[ColumnName1] ),
			VALUES( DimensionTable2[ColumnName2] ),
            VALUES( DimensionTable3[ColumnName3] ),
			"Measure", [Measure]
		),
		DimensionTable1[ColumnName1] IN {( Value1 ), ( Value2 )},
		DimensionTable2[ColumnName2] IN {( Value3 ), ( Value4 )}
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:13:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310489#M22859</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-20T10:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to evaluate measure and several dimensions?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310521#M22861</link>
      <description>&lt;LI-CODE lang="csharp"&gt;EVALUATE
    CALCULATETABLE(
    
        SUMMARIZECOLUMNS(
            DimensionTable1[ColumnName1],
            DimensionTable2[ColumnName2],
            DimensionTable3[ColumnName3]
            "Measure", [Measure]
        ),
        
        TREATAS(
            {Value1, Value2},
            DimensionTable1[ColumnName1]
        ),
        TREATAS(
            {Value3, Value4},
            DimensionTable2[ColumnName2]
        )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:27:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310521#M22861</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-20T10:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to evaluate measure and several dimensions?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310538#M22862</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , what are trying to achieve here. If you have tables and they are related, filter from dimension slicer will be taken care of by power bi?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:32:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-evaluate-measure-and-several-dimensions/m-p/1310538#M22862</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-08-20T10:32:20Z</dc:date>
    </item>
  </channel>
</rss>

