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.
Hello, i want to show a chart which shows the volumes of YTD (starting 1st April) going back in time. so for today it would shows
Bar 1 - 1st April 2024 - 21st April 2024
Bar 2 - 1st April 2023 - 21st April 2023
Bar 3 - 1st April 2022 - 21st April 2022
Solved! Go to Solution.
same logic for each bar you want to display
Dax Measure:
Volume from 1st April 2024 to 21st April 2024 =
CALCULATE( SUM(YourData[Volume]),
DATESBETWEEN(
Date[Date],
DATE(2024, 4, 1),
DATE(2024, 4, 21)
))
pls try this
Proud to be a Super User!
i would just like to flag 1 in the column, not display a date. thanks for your help
then try this
Proud to be a Super User!
how would i calculate these values
same logic for each bar you want to display
Dax Measure:
Volume from 1st April 2024 to 21st April 2024 =
CALCULATE( SUM(YourData[Volume]),
DATESBETWEEN(
Date[Date],
DATE(2024, 4, 1),
DATE(2024, 4, 21)
))
Hello,
You can use a clustered column chart. Calculate the values for each bar in separe DAX and choose the order you want for display
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 | |
43 |