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!View all the Fabric Data Days sessions on demand. View schedule
I have a dataset where I'm storing the response and latency of the APIs like
Now I've used a matrux table to pivot the data and able to do so
After that I would like to display a line chart with the latency trend for last few days in a tooltip. So I used a report page tooltip. I was able to show the report in the tooltip but it always show a single data value in the line chart and not the trend with few past dates.
Can anyone please help how to show a line chart and formulate the dataset for the line chart report with the filtered data while hovering over the cell in the matrix table?
Solved! Go to Solution.
Hi @subhendude ,
Here I suggest you to create an unrelated date table to help you create a line chart.
Measure =
IF(MAX('DimDate'[Date]) <= MAX('Table'[Date]),CALCULATE(AVERAGE('Table'[Latency])+0,FILTER('Table','Table'[Date] = MAX(DimDate[Date]))))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @subhendude ,
Here I suggest you to create an unrelated date table to help you create a line chart.
Measure =
IF(MAX('DimDate'[Date]) <= MAX('Table'[Date]),CALCULATE(AVERAGE('Table'[Latency])+0,FILTER('Table','Table'[Date] = MAX(DimDate[Date]))))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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!