Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have created following measure that showing only Employee_Capacity in column 5:
Employee_Capacity =
VAR WeekdayTable = FILTER ( DIM_DATE, DIM_DATE[T_Day_Of_Week_No] = 5 )
RETURN
SUMX (
WeekdayTable,
[Employee Capacity]
)
But Like to show Employee_Capacity for Roster_hours only visible for Start_Of_Week_Date as follows:
How can I accomplish this task? I need help please.
Cheers
Rahil
Hi Ashish,
Thanks for your prompt reply. I haven't test it yet. I will let you know if it works.
cheers
Hi,
Does this work
Employee_Capacity =
VAR WeekdayTable = FILTER ( DIM_DATE, DIM_DATE[T_Day_Of_Week_No] = 5 )
RETURN
IF(ISBLANK([Working hours]),BLANK(),SUMX (
WeekdayTable,
[Employee Capacity]
))
I have assumed that Working hours is a measure.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.