Forum Discussion
Column Filter
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?
8 Replies
- AnonymousNot applicable
hello you could try and use the allexcept(table,table[job_id])
- mweber87Helper I
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.
Thanks!
- AnonymousNot applicable
ok can you please sample the data?
and i didnt quite understand your question do you mean you want to count the job id per week?