Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I Have two different tables
Table 1:-
I'd I'd Type Region
123. Legacy
300 EmpId
145 CanID
301 EmpId
350 EmpId
150 CanId
Table 2:
EmpId CanId Region
300 123 EA
301 145 NORTH
350 150 EAST
Logic :- >= 300 EmpId
<300 CanId
Q)Need to get Region In table 1 based on table2
can any one tell me the Dax function to get this
Thankyou in advance.
Solved! Go to Solution.
@MAruna
Please try
=
MAXX (
FILTER (
UNION (
SELECTCOLUMNS ( Table2, "@ID", Table2[Empid], "@Region", Table2[Region] ),
SELECTCOLUMNS ( Table2, "@ID", Table2[Canid], "@Region", Table2[Region] )
),
[@ID] = Table1[id]
&& [@ID] <> BLANK ()
),
[@Region]
)
Hi @MAruna
assuming no relationship between the two tables
=
MAXX (
FILTER (
UNION (
SELECTCOLUMNS ( Table2, "@ID", Table2[Empid], "@Region", Table2[Region] ),
SELECTCOLUMNS ( Table2, "@ID", Table2[Canid], "@Region", Table2[Region] )
),
[@ID] = Table1[id]
),
[@Region]
)
Thank you @tamerj,
In ID's field some rows are null values,by using your dax formula im getting region for null aslo.
Could you please help me to get rid off from null values
@MAruna
Please try
=
MAXX (
FILTER (
UNION (
SELECTCOLUMNS ( Table2, "@ID", Table2[Empid], "@Region", Table2[Region] ),
SELECTCOLUMNS ( Table2, "@ID", Table2[Canid], "@Region", Table2[Region] )
),
[@ID] = Table1[id]
&& [@ID] <> BLANK ()
),
[@Region]
)
Based on ID's I am taking
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
11 | |
9 | |
9 |