Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I am working on a metric board and need to summarize my data set in a calculated table. I was able to generate the table, but am now having an issue with which row my formula is pulling data from:
I need the % formula to use the ROLLUP associated with each week (yellow), not from the grand total (blue). Any help would be greatly appreciated.
Summary Table =
var _Tested = COUNTX(Query1,Query1[SampleNumber])
return
SUMMARIZE(
Query1,
ROLLUP(Query1[Week],Query1[Profile Result]),
"Row Count",
COUNTA(Query1[SampleNumber]),
"%",if(
NOT(ISSUBTOTAL(Query1[Profile Result])||ISSUBTOTAL(Query1[Week]))
,DIVIDE(COUNTA(Query1[SampleNumber]),_Tested)
),
"Week Subtotal",ISSUBTOTAL(Query1[Week]),
"Profile Subtotal",ISSUBTOTAL(Query1[Profile Result]),
"Total",ISSUBTOTAL(Query1[Profile Result])&&ISSUBTOTAL(Query1[Week]))
Solved! Go to Solution.
So the problem is that you are calculating the "blue" value and storing that in a variable and using that for the denominator in the call to DIVIDE. I think the following alteration replacing the variable with a CALCULATE expression might work.
Summary Table =
SUMMARIZE(
Query1,
ROLLUP(Query1[Week],Query1[Profile Result]),
"Row Count",
COUNTA(Query1[SampleNumber]),
"%",if(
NOT(ISSUBTOTAL(Query1[Profile Result])||ISSUBTOTAL(Query1[Week]))
,DIVIDE(COUNTA(Query1[SampleNumber]),
/* The following should calculate the total count for the week */
CALCULATE(COUNTX(Query1,Query1[SampleNumber]),ALL(Query1[Profile Result]) ) )
),
"Week Subtotal",ISSUBTOTAL(Query1[Week]),
"Profile Subtotal",ISSUBTOTAL(Query1[Profile Result]),
"Total",ISSUBTOTAL(Query1[Profile Result])&&ISSUBTOTAL(Query1[Week]))
So the problem is that you are calculating the "blue" value and storing that in a variable and using that for the denominator in the call to DIVIDE. I think the following alteration replacing the variable with a CALCULATE expression might work.
Summary Table =
SUMMARIZE(
Query1,
ROLLUP(Query1[Week],Query1[Profile Result]),
"Row Count",
COUNTA(Query1[SampleNumber]),
"%",if(
NOT(ISSUBTOTAL(Query1[Profile Result])||ISSUBTOTAL(Query1[Week]))
,DIVIDE(COUNTA(Query1[SampleNumber]),
/* The following should calculate the total count for the week */
CALCULATE(COUNTX(Query1,Query1[SampleNumber]),ALL(Query1[Profile Result]) ) )
),
"Week Subtotal",ISSUBTOTAL(Query1[Week]),
"Profile Subtotal",ISSUBTOTAL(Query1[Profile Result]),
"Total",ISSUBTOTAL(Query1[Profile Result])&&ISSUBTOTAL(Query1[Week]))
This worked perfectly. Thank you for your help!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 37 | |
| 34 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 72 | |
| 38 | |
| 35 | |
| 26 |