<?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: Calculated column to evaluate values across columns in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1471070#M27925</link>
    <description>&lt;P&gt;Thank you so much. It works perfectly as I wanted.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Nov 2020 07:53:08 GMT</pubDate>
    <dc:creator>salafoo</dc:creator>
    <dc:date>2020-11-03T07:53:08Z</dc:date>
    <item>
      <title>Calculated column to evaluate values across columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1469835#M27890</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The below table shows the programs that each ID (Column Name: CR Number) has been served in:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a calculated column using DAX indicates if the ID was served in only one program or more than one. For example: first row shows the applicant was served in three diffrent programs while last one was only served in one program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 15:41:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1469835#M27890</guid>
      <dc:creator>salafoo</dc:creator>
      <dc:date>2020-11-02T15:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column to evaluate values across columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1469889#M27894</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="63160" data-lia-user-login="salafoo" class="lia-mention lia-mention-user"&gt;salafoo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Probably it would be best to unpivot the data to have that info in a column instead of on several ones. If you want to keep this structure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New column =
VAR count_ = 1 * ( Table1[Served in TWS] = "Yes" ) + 1 * ( Table1[Served in BCS] = "Yes" ) // and so on with the other columns...
RETURN
    IF ( count_ = 1, "Served in 1", "Served in more than 1" )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider &lt;FONT color="#FF9900"&gt;giving a thumbs up if posts are helpful.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Contact me privately for support with any larger-scale BI needs, tutoring, etc.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 16:07:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1469889#M27894</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2020-11-02T16:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column to evaluate values across columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1471070#M27925</link>
      <description>&lt;P&gt;Thank you so much. It works perfectly as I wanted.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 07:53:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-to-evaluate-values-across-columns/m-p/1471070#M27925</guid>
      <dc:creator>salafoo</dc:creator>
      <dc:date>2020-11-03T07:53:08Z</dc:date>
    </item>
  </channel>
</rss>

