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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Trying to count the number of CarerRef if the StartDate was before the date in a related table.
Trying -> Count Carer Ref = CALCULATE(COUNTROWS(CarersList),CarersList[CarerRef],CarersList[StartDate] < RELATEDTABLE(vw_ShiftsAll),vw_ShiftsAll[iDate])
Getting error The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
Any ideas what I need to change?
Solved! Go to Solution.
Hi @android1
Please give this calculated column a go.
Column =
CALCULATE(
COUNTROWS('vw_ShiftsAll'),
'vw_ShiftsAll'[iDate] > EARLIER('CarersList'[StartDate])
)
Hi @android1
Do you want this to be a calculated column or calculated measure?
Which table is on the One side of the one-to-many relationship between 'CarersList' and 'vw_ShiftsAll' ?
Hi @android1
Please give this calculated column a go.
Column =
CALCULATE(
COUNTROWS('vw_ShiftsAll'),
'vw_ShiftsAll'[iDate] > EARLIER('CarersList'[StartDate])
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!