Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there, I am a beginner in Power BI and trying to create a simple bar chart to show year (on x-axix) vs interest rates(decimal numbers) on y-axix. I have changed the data type for interest rates to decimals, chose 'don't summerize', but when I create the chart the interest rates show as 'count of interest rates' which is not what I want. can anybody help please? thanks
here is a picture of what I have now:
Solved! Go to Solution.
@Annahita There are two approaches
1. Click on the visual and on the right you can change the aggregation from Count to Sum instead.
2. Other way of doing it is creating a measure like below and adding it to the Y-axis field
MyMeasure = SUM(YourTable[Interest Rates])
Did I answer your question ? Please mark this post as a solution.
Thanks,
Jai
Proud to be a Super User! | |
@Annahita There are two approaches
1. Click on the visual and on the right you can change the aggregation from Count to Sum instead.
2. Other way of doing it is creating a measure like below and adding it to the Y-axis field
MyMeasure = SUM(YourTable[Interest Rates])
Did I answer your question ? Please mark this post as a solution.
Thanks,
Jai
Proud to be a Super User! | |
Hi Jai, thank you for your reply. Actually I don't want to sum up the interest rates, although I followed your direction (first option), and changed it to Average, which makes more sense in my case. The interest rates I have are daily bases for several years, so I am not sure how this average is calculated and how accurate it is (if my explanation makes any sense at all). Thank again
@Annahita To have more control over the logics. You have to create a measure
Average Interest = AVERAGE(Table[Interest Rate])
Now filter the data for few datapoints and calculate the average manually and cross check the value with a measure. This is how you can debug the measure.
Thanks,
Jai
Proud to be a Super User! | |
This is a great tip for debuggiing, thanks!