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.
I have two Table confimation and PValues. both sheet
My Pvalues table Sample data below .
My Pvalues Table
Plant PlantIdvalue
CH01 P55
CH12 P55
CH41 P55
DE07 P52
PT01 P57
CONFIRMATION TABLE
I am trying to bring plant value based on the Pvalue table compre with Plant. i have used dax lookup up fucntion but if any value in Text format category column in confirmation table plant value should be CT.
Like sample below
Category PLANT Plantvalue
89 CHO1 P55
50 CH12 P55
48 CH41 P55
34 DE07 P52
87 PT01 P57
AA CH10 CT
SE RO70 CT
VO CH10 CT
DE RO70 CT
Looking for support . thanks in advance.
Solved! Go to Solution.
@Anonymous , Based on what I got, Try like
new column =
var _max = maxx(filter( PValuesID, PValuesID[Plant]= FInal[Plant]),PValuesID[Pallet ID Value])
return
if(isblank(_max), "CT", _max)
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
@Anonymous , Based on what I got, Try like
new column =
var _max = maxx(filter( PValuesID, PValuesID[Plant]= FInal[Plant]),PValuesID[Pallet ID Value])
return
if(isblank(_max), "CT", _max)
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
Thank you @amitchandak sir
I am used below Dax its working sir
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
12 | |
10 | |
9 | |
9 |