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
Hi,
I have seperate tables (and they are not related).
One table called "Order_Tbl" listing customer with delivery date against due date.
The other called "OT_Range" listing performace range based on Ontime percentage.
Now I would like to add "Point" column to below table
For example, with OT_Percentage 50%, it should bring "30 points according to OT_Range.
Can someone help me as to how I can do so?
Solved! Go to Solution.
hi @Anonymous
try to plot as well a measure like this:
By the way, if I would like to count and present how many of point "A", "B" and "C" are in total from measured table, how can I calculate?
With example below, we should see 2 x "A" and 1 x "B".
hi @Anonymous
That depends on many things. Try to plot card visuals with the two measure below:
CountA :=
VAR _table =
ADDCOLUMNS(
VALUES(Order_Tbl[Customer]),
"Points",
[Point]
)
RETURN
COUNTROWS(FILTER(_table, [Points]="A")
CountB :=
VAR _table =
ADDCOLUMNS(
VALUES(Order_Tbl[Customer]),
"Points",
[Point]
)
RETURN
COUNTROWS(FILTER(_table, [Points]="B")
p.s. please consider @me if you seek further suggestion, otherwise i may lose the thread.
Thank you
hi @Anonymous
try to plot as well a measure like this:
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!