Forum Discussion
Adding two values from a generated matrix table
- Anonymous5 years ago
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.
jkesavan ,
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/
amitchandak i have sent you a private message to send the pbix file.
- Anonymous5 years agoNot applicable
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.