Forum Discussion
Anonymous
7 years agoNot applicable
Create a custom Table
Hello All, Please me with a DAx to create a new Table with an existing DATASET with Filter. I need to carete a New table With columns Products and Amounts with Blanks. Result ...
- 7 years ago
Anonymous try this DAX formula, I blindly followed what you explained.
Result = VAR __table = SUMMARIZE( SetB, SetB[Product], SetB[Region], "Sales", SUM( SetB[Sales] ) ) RETURN UNION( INTERSECT( SetA, SUMMARIZE( FILTER( __table, [Sales]= 0 ), [Product], [Region] )), EXCEPT( SUMMARIZE( FILTER( __table, [Sales]= 0 ), [Product], [Region] ), SetA ) )
here is the output of result table
Anonymous
7 years agoNot applicable
https://drive.google.com/file/d/1sU_vso5iiBI0vVjfPijFd9ts5GkAxYid/view?usp=sharing
Shared the sample DataSet