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
The aggregation of value is not the value i am looking for. the unsummarized value are the actual values.
how do i sum using row-level data?
Solved! Go to Solution.
Hi @Anonymous
In Power BI, visual like table can show unsummarize values. However, visuals like charts or matrix will show aggregations by groups.
In your screenshot, we can understand you show cost by "Co. Number —— Po. Number —— Column2"3 levels gourp. I think in your data model, there must be many different costs for the same "Co. Number —— Po. Number —— Column2" group. Like 00497G and 00569G in my sample.
I build a sample to have a test.
If you only have unique values for this group, you will get same aggregations. Like 31234G, 00119G and 26150G in my sample.
Here I will give you an advice. We can add a new level to the group to separate the aggregated values.
Rank =
RANKX (
FILTER (
'Sample',
'Sample'[Co. Number] = EARLIER ( 'Sample'[Co. Number] )
&& 'Sample'[Po. Number] = EARLIER ( 'Sample'[Po. Number] )
&& 'Sample'[Column2] = EARLIER ( 'Sample'[Column2] )
),
'Sample'[Cost],
,
ASC
)
Result is as below.
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.
Hi @Anonymous
In Power BI, visual like table can show unsummarize values. However, visuals like charts or matrix will show aggregations by groups.
In your screenshot, we can understand you show cost by "Co. Number —— Po. Number —— Column2"3 levels gourp. I think in your data model, there must be many different costs for the same "Co. Number —— Po. Number —— Column2" group. Like 00497G and 00569G in my sample.
I build a sample to have a test.
If you only have unique values for this group, you will get same aggregations. Like 31234G, 00119G and 26150G in my sample.
Here I will give you an advice. We can add a new level to the group to separate the aggregated values.
Rank =
RANKX (
FILTER (
'Sample',
'Sample'[Co. Number] = EARLIER ( 'Sample'[Co. Number] )
&& 'Sample'[Po. Number] = EARLIER ( 'Sample'[Po. Number] )
&& 'Sample'[Column2] = EARLIER ( 'Sample'[Column2] )
),
'Sample'[Cost],
,
ASC
)
Result is as below.
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.
Hello @Anonymous,
This is just so bright of you. It worked. Thank you for sharing your knowledge.
firstly what are you trying to do, you need to provide some context here?
give a sample of the data you are using and example of expected result.
Proud to be a Super User!
Hello, My goal is to create a sum that will result to the value equal to the value in the Unsummarized Cost so that i can put them into charts/matrix. @vanessafvg
you probably wont be able to use the matrix as that expects a summarized value, have you tried using the table object rather than the matrix and as you have set it to dont summarize that should work
Proud to be a Super User!
yeah it works in table, but when i use it in charts/graphs, the value always seemed to aggregate.
i want to aggregate row level @vanessafvg
can i ask why you are doing that? unfortunately that is the purpose of most visualisation objects to aggregate values against categorical data for the most part, anything that expects values expect an aggregation. you can potentially force a lower grain by for example having an index on each row and using that index in your visuals to force the grain to be at each value but I am not sure how that would look.
Proud to be a Super User!
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 |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |