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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Is there a way to write a sub query in Power BI
Example: Select COL1 from Table 1
Where Table1.COL2 =
(Select COL3 from Table2)
Thanks in Advance
Solved! Go to Solution.
HI @Anonymous
You could try this calculated table
New Calculated Table =
SELECTCOLUMNS(
GENERATE(
'Table 1',
FILTER(
'Table2',
'Table 1'[COL2] = 'Table2'[COL3])
) ,
"COL1" , [COL1]
)
HI @Anonymous
You could try this calculated table
New Calculated Table =
SELECTCOLUMNS(
GENERATE(
'Table 1',
FILTER(
'Table2',
'Table 1'[COL2] = 'Table2'[COL3])
) ,
"COL1" , [COL1]
)
Hi, I have Cosmos SQL that I want to apply. Cosmos doesn't support inner query.
I need to get first max of the record and then insert retireved value into another query. How can I do this in PowerBI ? I'm trying to execute SQL like below
select * from Employee where EmployeeId = ( select max(employeeid) from Employee)
Thanking you in advance.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 51 | |
| 41 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 134 | |
| 111 | |
| 50 | |
| 31 | |
| 29 |