Forum Discussion
gaurav1991
8 years agoRegular Visitor
Creating New Tables From One Existing Table
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 c...
- 8 years ago
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
v-yulgu-msft
8 years agoMicrosoft Employee
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
gaurav1991
8 years agoRegular Visitor