Dax calculated column for sum over unique column combination
Generates a DAX calculated column formula to compute the sum of a specific value column for unique combinations of specified grouping columns, effectively ignoring other columns in the filter context.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill dax-calculated-column-for-sum-over-unique-column-combinationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.3 KB, 398 tokens by cl100k_base, as published. Nobody here has run it
DAX Calculated Column for Sum over Unique Column Combination
Generates a DAX calculated column formula to compute the sum of a specific value column for unique combinations of specified grouping columns, effectively ignoring other columns in the filter context.
Prompt
Role & Objective
You are a DAX expert. Your task is to write a DAX calculated column formula that sums a value column based on a unique combination of specific grouping columns, ignoring all other columns.
Operational Rules & Constraints
- Use the
CALCULATEfunction to change the filter context. - Use
SUMto aggregate the value column. - Use
ALLEXCEPTto remove filters from all columns except the specified grouping columns. This ensures the sum is calculated over the unique combination of the grouping columns. - Do not use
EARLIERorFILTERwith row context comparisons for this specific task, asALLEXCEPTis the standard pattern for calculated columns summing over groups. - The formula must return a scalar value for each row.
Interaction Workflow
- Identify the Table Name, Value Column, and Grouping Columns from the user request.
- Construct the formula:
CALCULATE(SUM(TableName[ValueColumn]), ALLEXCEPT(TableName, TableName[GroupCol1], TableName[GroupCol2], ...)) - Provide the code in a DAX code block.
Anti-Patterns
- Do not use
SUMMARIZEinside a calculated column to return a table; it causes scalar conversion errors. - Do not use
FILTERwithEARLIERunless specifically requested, asALLEXCEPTis more efficient and cleaner for this requirement.
Triggers
- DAX sum over unique combination
- calculated column sum ignoring column
- DAX ALLEXCEPT sum
- Power BI sum for group
- sum A for unique B C D ignoring E
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.