<?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: Column Filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2881475#M93286</link>
    <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464527" data-lia-user-login="mweber87" class="lia-mention lia-mention-user"&gt;mweber87&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;please give this a try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;total = CALCULATE(SUM(powerbi[Transaction_Amount]),ALLEXCEPT(powerbi,powerbi[JOB_ID],powerbi[week]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if this helps, kindly accept as solution&lt;/P&gt;</description>
    <pubDate>Thu, 03 Nov 2022 00:01:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-03T00:01:06Z</dc:date>
    <item>
      <title>Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875088#M92888</link>
      <description>&lt;P&gt;I have a labor cost table. One of the columns is job_id. In this column there are 5259 distinct values. And each job_id has multiple entries (rows) with data. I am trying to get the labor total per week per job id. Is there a way to group the identical job_id so that I can sum the total of each. I know I could use DAX filter and filter out each job_id individually. However since there are so many records is there an easier time saving way to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 17:00:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875088#M92888</guid>
      <dc:creator>mweber87</dc:creator>
      <dc:date>2022-10-31T17:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875106#M92892</link>
      <description>&lt;P&gt;hello you could try and use the allexcept(table,table[job_id])&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 16:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875106#M92892</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-31T16:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875125#M92895</link>
      <description>&lt;P&gt;I think I may have worded my question wrong. I do not want to get rid of the whole column. I want to some how be able to add up the transaction total for each job id per week. Each job_id has multiple entries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 16:59:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875125#M92895</guid>
      <dc:creator>mweber87</dc:creator>
      <dc:date>2022-10-31T16:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875127#M92896</link>
      <description>&lt;P&gt;ok can you please sample the data?&lt;BR /&gt;and i didnt quite understand your question do you mean you want to count the job id per week?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 17:02:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2875127#M92896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-31T17:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2880882#M93248</link>
      <description>&lt;P&gt;Here is a sample set: This one JOB_ID has muliple Transaction_Amount entries. I want to be able to sum all of the transaction_amounts for each Job_ID. There are about 5000 different JOB_ID. My end result is to calcualte the labor per week per job id.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Transaction_Date&lt;/TD&gt;&lt;TD&gt;JOB_ID&lt;/TD&gt;&lt;TD&gt;ETYPE&lt;/TD&gt;&lt;TD&gt;Transaction_Amount&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, August 02, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;878.61&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, August 09, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;2912.62&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, August 16, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;6222.66&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, August 23, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;5111.06&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, August 30, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;3163.87&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, September 06, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;2085.32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, September 13, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;1652.74&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, September 20, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;2092.15&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, September 27, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;2142.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, October 04, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;2313.74&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Thursday, October 11, 2012&lt;/TD&gt;&lt;TD&gt;16246&lt;/TD&gt;&lt;TD&gt;LAB&lt;/TD&gt;&lt;TD&gt;1821.57&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 16:47:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2880882#M93248</guid>
      <dc:creator>mweber87</dc:creator>
      <dc:date>2022-11-02T16:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2881475#M93286</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464527" data-lia-user-login="mweber87" class="lia-mention lia-mention-user"&gt;mweber87&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;please give this a try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;total = CALCULATE(SUM(powerbi[Transaction_Amount]),ALLEXCEPT(powerbi,powerbi[JOB_ID],powerbi[week]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if this helps, kindly accept as solution&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 00:01:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2881475#M93286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-03T00:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883057#M93380</link>
      <description>&lt;P&gt;Yes that does work however there are 5,259 different job_id's that I need to total. And I was hoping there was a way I could group the job id's without having to write an expression for each job id.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 13:45:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883057#M93380</guid>
      <dc:creator>mweber87</dc:creator>
      <dc:date>2022-11-03T13:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883117#M93386</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464527" data-lia-user-login="mweber87" class="lia-mention lia-mention-user"&gt;mweber87&lt;/a&gt;&amp;nbsp;can you please explain it more&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 14:10:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883117#M93386</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-03T14:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Column Filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883180#M93392</link>
      <description>&lt;P&gt;The data set contains a job id, this job has a labor cost weekly until the job is finished (contruction work) There are 5,259 different jobs and each job has a labor cost assoicated with it each week. I need to figure out how much each job's labor cost is per week. Ultimately, I have to create a visual that shows the labor cost per week per job for the life of the job.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 14:40:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Column-Filter/m-p/2883180#M93392</guid>
      <dc:creator>mweber87</dc:creator>
      <dc:date>2022-11-03T14:40:57Z</dc:date>
    </item>
  </channel>
</rss>

