Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 from this table?
thank you very much in advance
Solved! Go to Solution.
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".
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".
User | Count |
---|---|
65 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |