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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have created an offshoot dummy table but only want to include a certain subset - say the original table has 20000 rows, I just want to return around 500 that meet a set criteria. Would the table be able to provide for that condition, incorporating SELECTCOLUMNS ? I've tried to play around with the below but can't get it to accept. Streamlined version below. Looking for it to only return those where --- IF 'Table'[Company]="Company4"
DUMMYTABLE = SELECTCOLUMNS(
Table,
"Ref", 'Table'[Reference],
"From", 'Table'[From],
"To", 'Table'[To]
)
Solved! Go to Solution.
You can use
DUMMYTABLE
= SELECTCOLUMNS (
FILTER ( Table, 'Table'[Company] = "Company4" ),
"Ref", 'Table'[Reference],
"From", 'Table'[From],
"To", 'Table'[To]
)
You can use
DUMMYTABLE
= SELECTCOLUMNS (
FILTER ( Table, 'Table'[Company] = "Company4" ),
"Ref", 'Table'[Reference],
"From", 'Table'[From],
"To", 'Table'[To]
)
Perfect. Thank you so much
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!
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 28 | |
| 21 | |
| 13 | |
| 12 |