Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |