Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi is there currently a way to just add two values made from a matrix table? Its relatively easy in excel as you just add two rows but struggling to figure this out in PowerBI. For example below:
i want to add the Early and Late columms. so the Diamond section will just produce 69.2% (8.55 + 60.65).
Thank you.
Solved! Go to Solution.
Hi @jkesavan
Due to I don't know your data model, I build a measure and see the result you want in column subtotal.
Measures:
Measure =
CALCULATE(SUM('Table'[Value1]),FILTER('Table','Table'[Status]=MAX('Table'[Status])))/100Measure2 = SUMX(FILTER('Table','Table'[Section] = MAX('Table'[Section])),[Measure])Result:
If this reply still couldn't solve your problem, please provide me with your pbix file by your Onedrive for Business.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If they are values in table , create a new column
new Type =
Switch ( True() ,
[Type] in {"Early" ,"Late"} ," Not on Time",
"On Time"
)
and use that. else you can explore segmentation or binning
if they are measures
Not on Time = [Early]+[Late]
https://www.daxpatterns.com/dynamic-segmentation/
https://www.daxpatterns.com/static-segmentation/
Hi @jkesavan
Due to I don't know your data model, I build a measure and see the result you want in column subtotal.
Measures:
Measure =
CALCULATE(SUM('Table'[Value1]),FILTER('Table','Table'[Status]=MAX('Table'[Status])))/100Measure2 = SUMX(FILTER('Table','Table'[Section] = MAX('Table'[Section])),[Measure])Result:
If this reply still couldn't solve your problem, please provide me with your pbix file by your Onedrive for Business.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 31 | |
| 28 | |
| 24 |