March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have unpivoted some columns and I got the simplified table below with duplicated issuekey which is normal due to the unpivot (in the real table I have many issuekeys not only DFS-1923).
In my report I need to create a measure that calculates the total number of storypoints and since I have duplicated issuekey I have too many storypoints in my result. How can I sum the storypoints without including the duplicated issuekey? The result in this small table should be 2, not 8.
issuekey | issuetypename | storypoints | FixVersionName | SprintId |
DFS-1923 | Story | 2 | 17 | |
DFS-1923 | Story | 2 | 17 | |
DFS-1923 | Story | 2 | 17 | |
DFS-1923 | Story | 2 | DFS-PI3 | 17 |
Solved! Go to Solution.
@Anonymous , Try measure like
sumx(summarize(Table, Table[issuekey], Table[storypoints]),[storypoints])
Add other columns as per need
@Anonymous , Try measure like
sumx(summarize(Table, Table[issuekey], Table[storypoints]),[storypoints])
Add other columns as per need
Hi,
It worked, thank you very much for your help!!!
Best regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |