<?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: Create Calculated Column based on multiple values from another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772577#M86367</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try the following measure&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Falg1 = 
SUMX ( 
    VALUES ( TableA[Profile_ID] ),
    CALCULATE ( 
        VAR TestOrg = CALCULATE ( SELECTEDVALUE ( TableB[TEST_ORG] ), CROSSFILTER ( TableA[ORG_ID], TableB[ORG_ID], BOTH ) ) 
        VAR AProfile = SELECTEDVALUE ( TableA[Profile_ID] )
        VAR CProfiles = CALCULATETABLE ( VALUES ( TableC[Profile_ID] ) )
        VAR DProfiles = CALCULATETABLE ( VALUES ( TableD[Profile_ID] ) )
        VAR Result =
            IF ( 
                TestOrg = "N",
                IF ( 
                    AProfile IN EXCEPT ( CProfiles, DProfiles ),
                    1
                )
            )
        RETURN
            Result
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;You can also place the measure only in the filter pane of the visual and select "Is not blank" then apply the filter. Then it will show like this&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2022 07:14:05 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-09-16T07:14:05Z</dc:date>
    <item>
      <title>Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2771484#M86304</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I have a Dataset set to DirectQuery Storage Mode and have the following case on hand:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;So I need to create a calculated column in &lt;U&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt;&lt;/U&gt; which will return &lt;STRONG&gt;Profile IDs&lt;/STRONG&gt; present in &lt;STRONG&gt;Table A&lt;/STRONG&gt; and &lt;STRONG&gt;Table C&lt;/STRONG&gt; but not in &lt;STRONG&gt;Table D&lt;/STRONG&gt; (which in the above mentioned case are &lt;STRONG&gt;5,6,7&lt;/STRONG&gt;)&lt;BR /&gt;&lt;BR /&gt;I also want to filter the &lt;STRONG&gt;Profile IDs&lt;/STRONG&gt; in &lt;STRONG&gt;Table A&lt;/STRONG&gt; by &lt;U&gt;&lt;STRONG&gt;Table B&lt;/STRONG&gt;&lt;/U&gt; '&lt;STRONG&gt;Test_Org&lt;/STRONG&gt;' = '&lt;STRONG&gt;N&lt;/STRONG&gt;' and only need to consider those Profile IDs as I traverse towards Table D.&lt;BR /&gt;&lt;BR /&gt;I am a beginner Power BI user so I am not sure what would be the right approach. I have tried using RELATED function, to filter my Profile IDs by 'Test_Org' = 'N' and to my understanding, this was only successful because RELATED can be used on 1-to-many relationship with the calculated column being created on 'many' side. But If I want to go towards Table C, It doesn't highlight the table name for me.&lt;BR /&gt;&lt;BR /&gt;Can someone please help me out with this or guide me on how to take this through? I have tried explaining the problem on hand but if there is anything missing, please let me know.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 20:16:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2771484#M86304</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-15T20:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772303#M86347</link>
      <description>&lt;P&gt;Any help on this would be appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 05:43:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772303#M86347</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T05:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772415#M86351</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You mentioned: "&lt;EM&gt;So I need to create a calculated column in&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;Table A&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt;" therefore, I assume you want to create a flag column in TableA. Please refer to attached sample file&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Falg = 
VAR TestOrg = RELATED ( TableB[TEST_ORG] )
VAR AProfile = TableA[Profile_ID]
VAR CProfiles = CALCULATETABLE ( VALUES ( TableC[Profile_ID] ) )
VAR DProfiles = CALCULATETABLE ( VALUES ( TableD[Profile_ID] ) )
VAR Result =
    IF ( 
        TestOrg = "N",
        IF ( 
            AProfile IN EXCEPT ( CProfiles, DProfiles ),
            1,
            0
        ),
        0
    )
RETURN
    Result&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 06:23:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772415#M86351</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T06:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772437#M86352</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;Thank you for your quick response on this.&lt;BR /&gt;&lt;BR /&gt;I actually wanted to fetch these values (5,6,7) in a column, instead of a flag. But I think this will work as well as I can simply drag all the Profile IDs and apply a visual level filter with Flag set to 1. But for the sake of discussion, Is it possible for us to fetch only those values (5,6,7) and have them in a calculated column?&lt;BR /&gt;&lt;BR /&gt;In the meantime, I am going to test this out and will update you shortly on the outcome.&lt;BR /&gt;&lt;BR /&gt;Thank you so much for providing assistance on this.&lt;BR /&gt;&lt;BR /&gt;Kind Regards&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 06:31:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772437#M86352</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T06:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772442#M86353</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Of course we can but in which row would you like to disply the result? Or by "calculate column" you mean a measure and you want to disply the result on a card visual? Still not clear to me. Please clarify. Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 06:35:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772442#M86353</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T06:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772486#M86358</link>
      <description>&lt;P&gt;For calculated Column, I would like to drop Profile ID column and the new calculated column in a table matrix side by side, and the calculated column should only populate values against those rows where the flag would be 1 (based on the logic you have proposed above). And if I remove the Original Profile ID column, it should only show 3 rows which would be 5,6,7.&lt;BR /&gt;&lt;BR /&gt;As far as the Measure is concerned, simple COUNT of these IDs would be sufficient to display on a card visual giving the result 3, based on the above example.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 06:48:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772486#M86358</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T06:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772523#M86361</link>
      <description>&lt;P&gt;Okay so I tried your solution on the Production Environment but when I am creating this Column, I am getting an error being highlighted on the following points:&lt;/P&gt;&lt;PRE&gt;VAR CProfiles = CALCULATETABLE ( VALUES ( TableC[Profile_ID] ) )
VAR DProfiles = CALCULATETABLE ( VALUES ( TableD[Profile_ID] ) )
VAR Result =
    IF ( 
        TestOrg = "N",
        IF ( 
            AProfile IN EXCEPT ( CProfiles, DProfiles ),
            1,
            0
        )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;It says CALCULATETABLE is not a function.&lt;BR /&gt;Same for VALUES and EXCEPT.&lt;BR /&gt;&lt;BR /&gt;Also, For VAR CProfiles, VAR DProfiles, It does not let me access the Profile IDs from these two tables. It does not highlight those tables nor the values from those table.&lt;BR /&gt;&lt;BR /&gt;I have StorageMode set to DirectQuery mode. Does that have anything to do with this? Why does it not allow me to use these functions as I have seen on various posts people using CALCULATETABLE and other functions inside a Calculated Column but I cannot seem to use them in my PBI Desktop File.&lt;BR /&gt;&lt;BR /&gt;Please do elaborate if you can on this.&lt;BR /&gt;&lt;BR /&gt;Many thanks once again&lt;BR /&gt;&lt;BR /&gt;Kind Regards&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 07:03:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772523#M86361</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T07:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772541#M86363</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Maybe you're not allowed to create a calculated column. Let me try with a measure.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 07:03:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772541#M86363</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T07:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772577#M86367</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try the following measure&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Falg1 = 
SUMX ( 
    VALUES ( TableA[Profile_ID] ),
    CALCULATE ( 
        VAR TestOrg = CALCULATE ( SELECTEDVALUE ( TableB[TEST_ORG] ), CROSSFILTER ( TableA[ORG_ID], TableB[ORG_ID], BOTH ) ) 
        VAR AProfile = SELECTEDVALUE ( TableA[Profile_ID] )
        VAR CProfiles = CALCULATETABLE ( VALUES ( TableC[Profile_ID] ) )
        VAR DProfiles = CALCULATETABLE ( VALUES ( TableD[Profile_ID] ) )
        VAR Result =
            IF ( 
                TestOrg = "N",
                IF ( 
                    AProfile IN EXCEPT ( CProfiles, DProfiles ),
                    1
                )
            )
        RETURN
            Result
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;You can also place the measure only in the filter pane of the visual and select "Is not blank" then apply the filter. Then it will show like this&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 07:14:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772577#M86367</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T07:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772601#M86369</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;Thank you for your effort on this.&lt;BR /&gt;&lt;BR /&gt;Let me give you an idea what I want to achieve with these IDs, I want to plot these IDs on a Bar Chart visual and see how much Membership Limit (This column is Present in Table A) are these Profile IDs holding onto, since they do not exist in Table D - Order Details&lt;BR /&gt;On X-Axis would be the Membership Limit Buckets and on Y-Axis would be the count for these customers present in each bucket.&lt;BR /&gt;But I do require these IDs in actual format for later use based on business requirement.&lt;BR /&gt;&lt;BR /&gt;My question comes back to the very basic thing, Why am I not allowed to use the CALCULATETABLE, SUMMARIZE, EXCEPT, VALUES etc function in a calculated column.&lt;BR /&gt;&lt;BR /&gt;Also I cannot access values of Table C or Table D while creating this column.&lt;BR /&gt;There is no restriction on my end as far as I know. Is this a normal behaviour or something I need to check?&lt;BR /&gt;&lt;BR /&gt;Please guide me through this if you can&lt;BR /&gt;&lt;BR /&gt;Thank you once again for your time and effort&lt;BR /&gt;&lt;BR /&gt;Kind Regards&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 07:24:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772601#M86369</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T07:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772679#M86373</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't a new column. You can slice by the original column and filter it by a measure. I already demonstrated that.&amp;nbsp;&lt;BR /&gt;And yes for connections your not allowed to create calculated columns as the model do not exist in your pbi file and you cannot edit a model that is used by multiple users. Have you tried creating the measure?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 07:48:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772679#M86373</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T07:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772925#M86396</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;Thank you for your response and solution for this issue.&lt;BR /&gt;&lt;BR /&gt;Just to update, I created a measure based on your proposed approach and it worked like a charm. I had to apply one or more filters based on my requirement to reach the expected outcome. Thank you so much for helping me out with this.&lt;BR /&gt;&lt;BR /&gt;Just to continue on the Calculated Column discussion since I am curious about it, I am working on the PBIX File which contains the entire Data Model, and this is the main Dataset file. I am the only user working on it, Only one other person has access to this file (who rarely use it) and they only use when confirming that I am not using it and vice versa.&lt;BR /&gt;&lt;BR /&gt;So my question still remains, what could be the reason why I am unable to use these functions such as CALCULATETABLE, SUMMARIZE, EXCEPT, VALUES etc when creating a calculated column, as I have seen you in your initial approach as well as other solutions posted on various topics use them frequently. Yet, I am unable to.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2772925#M86396</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T09:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773366#M86434</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Let me tag some of the best in the community&amp;nbsp;with much more experience and information than mine.&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="349489" data-lia-user-login="daXtreme" class="lia-mention lia-mention-user"&gt;daXtreme&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353745" data-lia-user-login="tackytechtom" class="lia-mention lia-mention-user"&gt;tackytechtom&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 11:43:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773366#M86434</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-16T11:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773519#M86448</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;Is this DirectQuery? Because if so it is probably:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 16 Sep 2022 12:32:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773519#M86448</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-09-16T12:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773931#M86481</link>
      <description>&lt;P&gt;Thank you &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt; for your assistance throughout this issue.&lt;BR /&gt;&lt;BR /&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;Yes this is DirectQuery Storage Mode and I guess you have summed it up in your message. But why is this a limitation on DirectQuery Mode for Calculated Columns? Or if you could direct me to some relevant links as I'm still a beginner and would want to know what sort of behaviour differentiates between different storage modes?&lt;BR /&gt;&lt;BR /&gt;Thank you for your help on this.&lt;BR /&gt;&lt;BR /&gt;Kind Regards&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 15:20:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2773931#M86481</guid>
      <dc:creator>PBI_Member_01</dc:creator>
      <dc:date>2022-09-16T15:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Calculated Column based on multiple values from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2774186#M86511</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="435045" data-lia-user-login="PBI_Member_01" class="lia-mention lia-mention-user"&gt;PBI_Member_01&lt;/a&gt;&amp;nbsp;Reasons. Not 100% sure but this has always been a common limitation with DAX columns in DirectQuery models. Measures are less limited. Always read the remarks for functions in the documentation as a lot of them have this limitation. What I posted is usually one of the last remarks if it is a limitation. These days you might consider switch a table to Hybrid storage mode and then I think it will work.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dax/calculate-function-dax" target="_blank"&gt;CALCULATE function (DAX) - DAX | Microsoft Docs&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/desktop-composite-models" target="_blank"&gt;https://docs.microsoft.com/en-us/power-bi/desktop-composite-models&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 17:21:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-Calculated-Column-based-on-multiple-values-from-another/m-p/2774186#M86511</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-09-16T17:21:48Z</dc:date>
    </item>
  </channel>
</rss>

