<?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 create a measure that returns specific values from a column? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919482#M9028</link>
    <description>The lookup option returns an error because there's no relationship between the two tables.&lt;BR /&gt;The other option returns an error in Pbi for some reason, saying there's an error in the expression.&lt;BR /&gt;&lt;BR /&gt;Here's the thing, I know the two tables aren't connected. But when I use a slicer to slice the fact table, based on a column from a table related to the fact, I want the other slicer that is actually a column in the fact table, to only display the values that exist in another column, from unrelated table.&lt;BR /&gt;Is that even possible?</description>
    <pubDate>Mon, 03 Feb 2020 10:36:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-02-03T10:36:53Z</dc:date>
    <item>
      <title>How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916292#M8889</link>
      <description>I want to use it as a slicer. I'm using direct query (Tabular) and cannot add custom columns to the model, so i can use measures only.&lt;BR /&gt;&lt;BR /&gt;I want the slicer to include values from column A, but only those that exist in column B, which is a column from a different table.&lt;BR /&gt;&lt;BR /&gt;Please help.</description>
      <pubDate>Thu, 30 Jan 2020 09:55:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916292#M8889</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T09:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916339#M8891</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's not possible to use a measure in a slicer.&lt;/P&gt;&lt;P&gt;I understand you're not able to add calculated columns but are you able to add a calculated table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Martyn&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;If I answered your question, please help others by accepting it as a solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 10:41:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916339#M8891</guid>
      <dc:creator>MartynRamsden</dc:creator>
      <dc:date>2020-01-30T10:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916347#M8892</link>
      <description>Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="98062" data-lia-user-login="MartynRamsden" class="lia-mention lia-mention-user"&gt;MartynRamsden&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;What do you mean by calculated table?&lt;BR /&gt;His do i do that in pbi?</description>
      <pubDate>Thu, 30 Jan 2020 10:56:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916347#M8892</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T10:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916387#M8893</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go the Modeling tab, then click 'New table'. You'll then need to enter a DAX expression for new table.&lt;/P&gt;&lt;P&gt;Your expression could be something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NewTable = 
FILTER( 
    ALL( Table1[ColumnA] ),
    Table1[ColumnA] IN VALUES( Table2[ColumnB] )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This new table would contain a single column containing the values from ColumnA in Table1 that also exisit in ColumnB in Table2.&lt;/P&gt;&lt;P&gt;You can then use the new column as a slicer in your report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: since there are no relationships to the new&amp;nbsp;table, your measures will need to reference the&amp;nbsp;new column&amp;nbsp;(probably using TREATAS, VALUES or&amp;nbsp;SELECTEDVALUE) so the slicer selction can be taken into account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are plenty of resources available about how to use disconnected slicers. Here are a few:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://powerpivotpro.com/2018/05/disconnected-slicers-with-dax-variables-selectedvalues/" target="_blank" rel="noopener"&gt;powerpivotpro.com/2018/05/disconnected-slicers-with-dax-variables-selectedvalues/&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://www.kasperonbi.com/dynamic-data-comparisons-using-disconnected-slicers-treatas-and-inactive-relationships/" target="_blank" rel="noopener"&gt;www.kasperonbi.com/dynamic-data-comparisons-using-disconnected-slicers-treatas-and-inactive-relationships/&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Martyn&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;If I answered your question, please help others by accepting it as a solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 11:36:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916387#M8893</guid>
      <dc:creator>MartynRamsden</dc:creator>
      <dc:date>2020-01-30T11:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916394#M8894</link>
      <description>Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="98062" data-lia-user-login="MartynRamsden" class="lia-mention lia-mention-user"&gt;MartynRamsden&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Unfortunately, calculated tables are disabled as well.</description>
      <pubDate>Thu, 30 Jan 2020 11:43:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916394#M8894</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T11:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916399#M8895</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In that case, I think your only option is to speak to the developer of the Tabular data model and ask them to add your calculated column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Martyn&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;If I answered your question, please help others by accepting it as a solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 11:46:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916399#M8895</guid>
      <dc:creator>MartynRamsden</dc:creator>
      <dc:date>2020-01-30T11:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916410#M8896</link>
      <description>Thank you for the reply &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="98062" data-lia-user-login="MartynRamsden" class="lia-mention lia-mention-user"&gt;MartynRamsden&lt;/a&gt; i will try to open the tabular project myself. But what did you mean by the previous note? That besides the calculated column ill be needing a key?</description>
      <pubDate>Thu, 30 Jan 2020 11:58:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916410#M8896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T11:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916495#M8900</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to stress that, if you added a disconnected slicer, you would probably have to update your measures to take its current value into account. Since you can't use a disconnected slicer, you don't need to worry about it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just thought of a solution which may work without you having to edit the model...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a measure to identify if a given value in Table1[ColumnA] is also in Table2[ColumnB]:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FilterColumnA = 
VAR SelColA = SELECTEDVALUE( Table1[ColumnA] )
VAR Result = 
IF ( 
    SelColA IN VALUES ( Table2[ColumnB] ),
    "Y",
    "N"
)
RETURN Result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add Table1[ColumnA] as a slicer on your report.&lt;/P&gt;&lt;P&gt;Then add the new measure as a visual level filter set and set it to "Y".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your slicer will then only show values in ColumnA which also appear in ColumnB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Martyn&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;If I answered your question, please help others by accepting it as a solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 13:37:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/916495#M8900</guid>
      <dc:creator>MartynRamsden</dc:creator>
      <dc:date>2020-01-30T13:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/918613#M8982</link>
      <description>&lt;P&gt;Thank you I will try that.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 15:44:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/918613#M8982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-01T15:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/918627#M8986</link>
      <description>For tabular model connections you can't create columns or calculated tables.&lt;BR /&gt;All these thing you need to do it at model level only.&lt;BR /&gt;In cube create column or calculated table as per requirement and then use it in slicer.&lt;BR /&gt;&lt;BR /&gt;Please check my blog related to tabular model.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784&lt;/A&gt;?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Pravin&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If it resolves your problem mark it as a solution and give Kudos.</description>
      <pubDate>Sat, 01 Feb 2020 18:08:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/918627#M8986</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-01T18:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919354#M9021</link>
      <description>Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="98062" data-lia-user-login="MartynRamsden" class="lia-mention lia-mention-user"&gt;MartynRamsden&lt;/a&gt;, i wasn't able to use the selectedvalue function. Pbi doesn't allow me to use it at thar scope i guess.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Feb 2020 08:54:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919354#M9021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T08:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919358#M9023</link>
      <description>Thanks for your reply, Anonymous&lt;/a&gt;.&lt;BR /&gt;Could you tell me how to do that, in the tabular model? I got a little confused.</description>
      <pubDate>Mon, 03 Feb 2020 08:56:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919358#M9023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T08:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919432#M9026</link>
      <description>&lt;P&gt;you want to use column B values only in slicer right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go to your model Click on new column&lt;/P&gt;&lt;P&gt;New column=lookupvalue(ColumnA,ColumnA,ColumnB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&amp;nbsp;&lt;/P&gt;&lt;P&gt;new column=&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR SelColA = MAX( Table1[ColumnA] )
VAR Result = 
IF ( 
    SelColA IN VALUES ( Table2[ColumnB] ),
    Table1[ColumnA],
    Blank()
)
RETURN Result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use this column in slicer and filter out blank values from slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/P&gt;&lt;P&gt;check my blog here&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 09:52:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919432#M9026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T09:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919482#M9028</link>
      <description>The lookup option returns an error because there's no relationship between the two tables.&lt;BR /&gt;The other option returns an error in Pbi for some reason, saying there's an error in the expression.&lt;BR /&gt;&lt;BR /&gt;Here's the thing, I know the two tables aren't connected. But when I use a slicer to slice the fact table, based on a column from a table related to the fact, I want the other slicer that is actually a column in the fact table, to only display the values that exist in another column, from unrelated table.&lt;BR /&gt;Is that even possible?</description>
      <pubDate>Mon, 03 Feb 2020 10:36:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919482#M9028</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T10:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919489#M9029</link>
      <description>&lt;P&gt;try this,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New column=calculate(max(table1[col A]),contains(table1,table1[col A],table2[col B]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/P&gt;&lt;P&gt;check my blog here&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Connecting-to-a-Tabular-Model-Using-Power-BI/ba-p/913784&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 10:44:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919489#M9029</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T10:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919581#M9031</link>
      <description>I tried that and it looked good in the tabular model, but in Pbi it throws "error in expression".&lt;BR /&gt;By the way, there was an error in the formula saying "contains has been used in a true/false expression that is used as a table filter expression", so i wrapped 'contains' with the function 'filter'.&lt;BR /&gt;&lt;BR /&gt;I have to point out, only when I slice the fact table with the first slicer (i mentioned that in my previous post), the values in the unrelated table change, because they belong to the same table.&lt;BR /&gt;So, for example, my main slicer is 'Org', from a dimension called 'Org_Unit', that has another column 'Sub_Org'.&lt;BR /&gt;When I slice my dashboard with 'Org', I want the third slicer 'Actual_Org' that is a column in the fact itself, to only show the values in 'Sub_Org' that are the result if the 'Org' slicing.&lt;BR /&gt;Hope i make sense, if not I'll try and draw a general picture.</description>
      <pubDate>Mon, 03 Feb 2020 12:28:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/919581#M9031</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T12:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922236#M9131</link>
      <description>&lt;P&gt;Anyone..?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, here's a basic overview:&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, when I use 'Slicer 1' - the fact table and 'Slicer 2' change their values, accordingly.&lt;/P&gt;&lt;P&gt;The thing is I want 'Slicer 3', that has the same values like 'Slicer 2', to display only the current values of 'Slicer 2', and it doesn't.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this makes sense.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 11:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922236#M9131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-05T11:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922275#M9134</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Column = CONTAINS(Table2, Table2[Value], Table1[Value])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;create this column and check is it working or not and then create measure on this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Pravin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 09:12:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922275#M9134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-05T09:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922478#M9150</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;I will try that tomorrow since I'm not at work right now.&lt;BR /&gt;I added a picture to demonstrate my situation, I'd love you to check.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 11:34:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/922478#M9150</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-05T11:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a measure that returns specific values from a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/923885#M9202</link>
      <description>Hi Anonymous&lt;/a&gt;, unfortunately this didn't work since there's no direct relationship between the two tables.</description>
      <pubDate>Thu, 06 Feb 2020 10:27:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-measure-that-returns-specific-values-from-a/m-p/923885#M9202</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-06T10:27:54Z</dc:date>
    </item>
  </channel>
</rss>

