Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello Folks,
Please let me know how to create new table from one Big table. I want to create 3-4 small tables from one big table by applying some filters in it.
In output 1, i need only 3 columns i.e. [ Product | Qty | Size ] with one condition i.e. Size = Large, as shown below
In output 2 need only 2 columns i.e. [ Product | Qty ] with one condition i.e. Sex = Female, as shown below
Solved! Go to Solution.
Hi @gaurav1991,
OutPut1 =
SELECTCOLUMNS (
FILTER ( TableName, TableName[Size] = "Large" ),
"Product", TableName[Product],
"Qty", TableName[Qty],
"Size", TableName[Size]
)
OutPut2 =
SELECTCOLUMNS (
FILTER ( TableName, TableName[Sex] = "Female" ),
"Product", TableName[Product],
"Qty", TableName[Qty]
)
Best regards,
Yuliana Gu
Hi @gaurav1991,
OutPut1 =
SELECTCOLUMNS (
FILTER ( TableName, TableName[Size] = "Large" ),
"Product", TableName[Product],
"Qty", TableName[Qty],
"Size", TableName[Size]
)
OutPut2 =
SELECTCOLUMNS (
FILTER ( TableName, TableName[Sex] = "Female" ),
"Product", TableName[Product],
"Qty", TableName[Qty]
)
Best regards,
Yuliana Gu
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 40 | |
| 32 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 87 | |
| 72 | |
| 37 | |
| 28 | |
| 26 |