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.
Hey Friends,
Can you please help me to convert below sql to DAX .
SELECT COUNT(B.Parent_SID) Parent_Count, FullName FROM [BI].[Fact_OutboundCalls] A INNER JOIN [BI].[Dim_Parent] B ON A.DialedNumber = B.PHONE
INNER JOIN [BI].[Dim_Employee] C ON A.Employee_SID = C.Employee_SID
GROUP BY C.FullName
Considering you have below relationships in your Power BI data model
B[Phone] = A[DialedNumber]
C[Employee_SID] = A[EmployeeSID]
you can use below to create table using DAX