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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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]) )
User | Count |
---|---|
98 | |
75 | |
73 | |
49 | |
26 |