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
I have a Excel data sheet for power bi Report preparation. in my datasheet have two column Product and Qty like below screen shot.
Now i have QTY changed in to COUNT(DISTINCT). now table looks like the below
Now i want to get the count of the QTY from Distinct table . i am using three conditions below
>= 4 - i want to get count of which are the values are Greater than equal to 4
= 12 - i want to get count of which are the values equal to 12.
Looking for support. Thanks in advance .
@Anonymous , You need a new measure like
Sumx(filter(Table, Table[Product] , "_qty", sum(Table[Qty]) ),switch(true(), [_qty] =12, 12, [_qty] >=4,4))
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |