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
I have two KPI tables. one has KPI which has a list of KPI's, KPI Type which has a list of types such as RTG, QC etc. and KPI Values which has the value for each of the KPI and type. but when you select QC, it should not take the value from KPI_Value but it should fetch the data from another table where there is a column called QC moves.
Solved! Go to Solution.
HI @sure19,
You can use the following measure formula to extract table records and filter and calcite on other KPI table:
Measure =
CALCULATE (
SUM ( TP_ENG_KPI[QC MOVES] ),
FILTER (
ALLSELECTED ( TP_ENG_KPI ),
[TPA LOCATION NAME] IN VALUES ( OPS_YARD_MOVES[TERMINAL] )
)
)
Regards,
Xiaoxin Sheng
Hi @sure19,
Can you please share some dummy data and the expected results? It is hard to clarify your requirements and do test from your description without any detail sample data.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
HI @sure19,
You can use the following measure formula to extract table records and filter and calcite on other KPI table:
Measure =
CALCULATE (
SUM ( TP_ENG_KPI[QC MOVES] ),
FILTER (
ALLSELECTED ( TP_ENG_KPI ),
[TPA LOCATION NAME] IN VALUES ( OPS_YARD_MOVES[TERMINAL] )
)
)
Regards,
Xiaoxin Sheng
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!