Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi All,
I have a simple table with rows which are days of the month. Two columns Sales for each day from 2015 and a second column for 2014.
I want to calcuate the percentage change, which i can do on a row to row basis no problem.
The issue is that when that percentage column is sumed, it is incorrectly calulcating the total percentage cange, its adding each row together so i am getting very high results like 1423% increase when the actual is something like 10.45% for example.
I cannot figure out the correct DAX formula to correct this. Any help appreciated.
Thanks
Craig
Solved! Go to Solution.
@CraigBlackman You can use different DAX (Data Analysis Expression) functions to achieve your result
I found that my problem was that when I created the object, I created it as a 'New Column' instead of a 'New Measure'.
This caused it to add the percentages for each row (since there was a percentage created for each row, because it was a 'column' in the actual data).
I have the exact same problem. Of course, the answer given above gives no help. How did you resolve the issue?
@CraigBlackman You can use different DAX (Data Analysis Expression) functions to achieve your result
create a new measure
Pct = divide(sum(tableName[columnA]), sum(tableName[columnB]))
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 |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
42 |