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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 7 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 29 | |
| 18 | |
| 17 | |
| 11 | |
| 10 |