Forum Discussion
markefrody
Post Patron
8 years agoUsing DAX: Removing Duplicates in Column A Before Summing Up Column B
Hi, I would like to ask you assistance if there is a DAX query that could help me on the below. Please note that I cannot use remove duplicates in "Edit Queries" since I have other calculations t...
Anonymous
8 years agoNot applicable
Hi markefrody,
You can create a new DAX table with this formula:
NewDAXTable =
SUMMARIZECOLUMNS (
'Table'[Job: Name],
"Sum_SPHA_Filled", MAX ( 'Table'[SPHA's Filled] )
)Regards.
- markefrody8 years ago
Post Patron
Hi Anonymous,
Thanks for the suggestion. Is it posibble to group it also via "Office"?