Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have this Excel data but when I try to reproduce the below chart in Power BI, it'll try to SUM or COUNT the P01-P13 data.
Which is obviously not what I want. I simply want Power BI to use the raw data.
I've double checked that Power BI is treating the values as decimal numbers and no other data type. There's no sigma (Σ) icons next to the data in the design view. ("Do not summarize" etc.)
I've been through many mnay Google search results pages as well as this messageboard, but am unable to find a solution.
Anyone got ideas please? Maybe a DAX solution would be best here?
Thanks.
We see this one frequently on the forum. A line chart requires one value on the y-axis for one value on the x-axis therefore it forces an aggregation to be chosen.
I suppose a design decision was taken to remove the 'do not summarize' option in line charts because it would cause confusion.
If the data only has one y value for every x value then SUM, AVG, MIN, MAX will work
@Pete_81 ,
Did you try changing the summarization?
If not, please try the following:
Select the column > you'll see Summarization on top ribbon. Then select don't summarize.
OR
You can create a DAX Measure for the minimum/sum/maximum etc.
Also, from what I see in the image, it gives correct answer irrespective of the summarization.
Please let me know if this didn't help.
>Select the column > you'll see Summarization on top ribbon. Then select don't summarize.
Yes, this was done when importing the data.
The image displayed is from Excel, not Power BI.
What would be the best way to do the DAX measure?
@Pete_81 ,
You can write the following DAX:
Total = SUM([YourColumn]) OR Minimum= MIN([YourColumn])
Unless and until I don't know the input and output thoroughly I can just guess the solutions.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
36 | |
31 |
User | Count |
---|---|
84 | |
63 | |
63 | |
49 | |
45 |