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! It's time to submit your entry. Live 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
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 110 | |
| 59 | |
| 39 | |
| 32 |