The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |