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.
Hello Power BI community,
A very simple question on creating a new table in Power BI.
Please find below as a data
Table 1
| CANDY | OFFICE |
|--------|------------|
| Nomi | Challakere |
| Sinnu | Durga |
| Toli | Shimoga |
| Naky | Loli |
| Toli | Burgi |
Table 2
| OFFICE | PRODUCER ID |
|------------|-------------|
| Challakere | 1 |
| Durga | 2 |
| Shimoga | 3 |
| Loli | 4 |
| Burgi | 5 |
So i want New table with Column (candy) from table 1 and (Producer id ) from table 2
Solved! Go to Solution.
Try:
Table 3 =
SELECTCOLUMNS (
'Table 1',
"Candy", 'Table 1'[CANDY],
"Producer", LOOKUPVALUE ( 'Table 2'[PRODUCER ID], 'Table 2'[OFFICE], 'Table 1'[OFFICE] )
)
Proud to be a Super User!
Paul on Linkedin.
you can use merge queries as nwe and select required colmns in PQE. otherwise use joins in DAX
Can You Please Write Down DAX Function here
Try:
Table 3 =
SELECTCOLUMNS (
'Table 1',
"Candy", 'Table 1'[CANDY],
"Producer", LOOKUPVALUE ( 'Table 2'[PRODUCER ID], 'Table 2'[OFFICE], 'Table 1'[OFFICE] )
)
Proud to be a Super User!
Paul on Linkedin.
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.