Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello.
Reference file (Dropbox): https://www.dropbox.com/s/pgj4170swazar6e/MockUp2.pbix?dl=0
Description: File contains two queries, one for open work ("Tasks") and one for available resources ("Availability"). The open work has calculated measures attached which allows the user to use a date slicer to see how much work is remaining per configuration for a specific time frame. Currently I am not able to put availability for a specific time frame next to work.
User Story: I would like to display available resources (Availability[HoursTotal]) and work (Tasks[Work (h)]) for the time frame selected in the date slicer in one column chart
Further challenges: Additionally I am looking into having another column chart with "Availability[Team]" as value on the x-axis and then columns which indicate a) "Tasks[Work (h)]" per team and b) "Availability[HoursTotal]" per team.
Thank you,
-L
Solved! Go to Solution.
Hi @love,
I noticed that there isn't any relationship between 'Availability' and 'CalendarTable'. So, the Availability[HoursTotal] won't be affected by the selected date range from slicer. You may create a measure similar to:
Hours total measure =
CALCULATE (
SUM ( Availability[HoursTotal] ),
FILTER (
Availability,
Availability[Date] >= MIN ( CalendarTable[Date] )
&& Availability[Date] <= MAX ( CalendarTable[Date] )
)
)
Regards,
Yuliana Gu
Hi @love,
I noticed that there isn't any relationship between 'Availability' and 'CalendarTable'. So, the Availability[HoursTotal] won't be affected by the selected date range from slicer. You may create a measure similar to:
Hours total measure =
CALCULATE (
SUM ( Availability[HoursTotal] ),
FILTER (
Availability,
Availability[Date] >= MIN ( CalendarTable[Date] )
&& Availability[Date] <= MAX ( CalendarTable[Date] )
)
)
Regards,
Yuliana Gu
Hello @v-yulgu-msft and thank you very much for your reply. Creating this relationship was what I was working on but I did not succeed, I am testing your proposal right now and it seems to work very well, thank you!
Would you also have an insight on how to now have both availability & work displayed in the same column chart? I am completly stuck on this challenge.
@Zubair_Muhammad would you please be so kind to maybe help me out another time here?
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |