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.
So this is probably very easy but I can't get it right. I have
I just want to slice by event name and show the number of transactions only for minutes during the event selected.
I know this can't be hard but it just won't work. Can someone just point me in the right direction?
Solved! Go to Solution.
You can refetr to the following sample
Table1
Table 2
Create a measure
Measure =
IF (
ISFILTERED ( 'Table (2)'[Events] ),
CALCULATE (
SUM ( 'Table'[Number] ),
FILTER (
'Table',
[Date] >= MAX ( 'Table (2)'[StartDate] )
&& 'Table'[Date] < MAX ( 'Table (2)'[End Date] )
)
),
CALCULATE ( SUM ( 'Table'[Number] ) )
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This looks very promising. I'll have to make a few adjustments, but I can see a path to success now. Thank you!
Edit: It works! Thank you so much!
You can refetr to the following sample
Table1
Table 2
Create a measure
Measure =
IF (
ISFILTERED ( 'Table (2)'[Events] ),
CALCULATE (
SUM ( 'Table'[Number] ),
FILTER (
'Table',
[Date] >= MAX ( 'Table (2)'[StartDate] )
&& 'Table'[Date] < MAX ( 'Table (2)'[End Date] )
)
),
CALCULATE ( SUM ( 'Table'[Number] ) )
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.