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.
How do i include a calculated column/ calculated field in the data model such that it calculates the number of times (for example in Op No. column ,the value '9999' and in Equipment column, the value '215320307' appears, for this case which should show as '3'). Show in the picture below.
And from there I want to get the highest time value between CN47N Actual Time column and IW49 Actual Time column and sum them up for rows that '9999' in Op No column and '215320307' in Equipment column appear and divide by the count '3' that was calculated from the calculated column/ calculated field earlier.
Solved! Go to Solution.
Hi @ephramz ,
Try dax like this :
Count =
CALCULATE (
COUNT ( 'ENGG VM_TRM'[OP.No.] ),
FILTER (
'ENGG VM_TRM',
'ENGG VM_TRM'[Equipment] = EARLIER ( 'ENGG VM_TRM'[Equipment] )
&& 'ENGG VM_TRM'[OP.No.] = EARLIER ( 'ENGG VM_TRM'[OP.No.] )
)
)
See the below ,a sample:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi @ephramz ,
Try dax like this :
Count =
CALCULATE (
COUNT ( 'ENGG VM_TRM'[OP.No.] ),
FILTER (
'ENGG VM_TRM',
'ENGG VM_TRM'[Equipment] = EARLIER ( 'ENGG VM_TRM'[Equipment] )
&& 'ENGG VM_TRM'[OP.No.] = EARLIER ( 'ENGG VM_TRM'[OP.No.] )
)
)
See the below ,a sample:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
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.