Forum Discussion
How to connect and visualize values from different sources with shared configurations
- 8 years ago
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.