Forum Discussion
Betissa
9 years agoHelper I
remove lines from table
Hello everyone; I created a new table from another table by the function SUMMURIZE. The new table created contains empty fields; My question: how can i remove the lines that contain empty fields f...
- 9 years ago
Wrap your Table parameter with a FILTER.
Table = SUMMARIZE(FILTER(Customers,Customers[Segment]="Segment2"),Customers[Segment],"Sum ID",SUM(Customers[CustomerID]))
Only returns Customers in "Segment2".
Greg_Deckler
9 years agoCommunity Champion
Wrap your Table parameter with a FILTER.
Table = SUMMARIZE(FILTER(Customers,Customers[Segment]="Segment2"),Customers[Segment],"Sum ID",SUM(Customers[CustomerID]))
Only returns Customers in "Segment2".
Betissa
9 years agoHelper I
Greg_DecklerThank's a lot Friend :womanhappy: