Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hello,
as part of a project I would like to sum a part of a bar chart in Power BI as a percentage of total amount.
This is my data set:
Enter_date | Stock_date |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
07-Mar-22 | 07-Mar-22 |
04-Mar-22 | 04-Mar-22 |
04-Mar-22 | 04-Mar-22 |
04-Mar-22 | 07-Mar-22 |
04-Mar-22 | 04-Mar-22 |
04-Mar-22 | 07-Mar-22 |
04-Mar-22 | 04-Mar-22 |
04-Mar-22 | 07-Mar-22 |
04-Mar-22 | 04-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 07-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 03-Mar-22 |
03-Mar-22 | 04-Mar-22 |
03-Mar-22 | 04-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 04-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 02-Mar-22 |
02-Mar-22 | 04-Mar-22 |
02-Mar-22 | 04-Mar-22 |
02-Mar-22 | 04-Mar-22 |
02-Mar-22 | 02-Mar-22 |
02-Mar-22 | 02-Mar-22 |
02-Mar-22 | 07-Mar-22 |
02-Mar-22 | 02-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 03-Mar-22 |
02-Mar-22 | 02-Mar-22 |
I would like to calculate the date difference in days and show the result in a bar chart. Result would look something like this.
(This is an example, not related to the data given at the beginning of this message)
First I add a column to calculate the day difference between the order date and stock date. Next, I have added a conditional column in the query editor. Based on the outcome of the difference between the two dates, these days are added up and put into a bar chart per category (1, 2, 3, 4.... days).
I don't know if this is the best way to calculate the percentage. If not, please tell me how to do this.
I would like to calculate the sum of the green bar charts as a percentage of the total. How can I do that?
Thanks in advance.
Regards,
Solved! Go to Solution.
@WLFRD , Create a new column
new column =
var _diff = datediff([enter date],[stock date],day)
return
Switch(True() ,
_diff =0, "Resolved on same day" ,
// Add other options
"Other" //default
)
@WLFRD , Create a new column
new column =
var _diff = datediff([enter date],[stock date],day)
return
Switch(True() ,
_diff =0, "Resolved on same day" ,
// Add other options
"Other" //default
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
68 | |
67 | |
41 | |
39 |
User | Count |
---|---|
48 | |
42 | |
29 | |
28 | |
27 |