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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I effectively have phone call records that have a start and end time on them. Is there anyway to calculate how many calls were active at the same time along a line chart? (If I select the start or end time as the axis, unless more than one record has the exact same timestamp its a straight line.)
Thanks
Lee
Solved! Go to Solution.
Hi LeeFord,
You can create a measure and using DAX formula below:
CALCULATE (
COUNT ( table[calls] ),
FILTER (
table,
table[time] <= MAX ( table[time] )
&& table[time] >= MIN ( table[time] )
)
)Regards,
Jimmy Tao
Hi LeeFord,
You can create a measure and using DAX formula below:
CALCULATE (
COUNT ( table[calls] ),
FILTER (
table,
table[time] <= MAX ( table[time] )
&& table[time] >= MIN ( table[time] )
)
)Regards,
Jimmy Tao
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!