Hi guys,
I trying to create one measure in my PowerBi Report .
I need to count the number of items if the value in other column are = to SR
So,In column "GROUP" i have 3 type of groups A,B,C IN column "TYPE" i have SR or INC
I need to know how many SR types i have in my group.
I have this measure for count all my total A in column group: CountAGROUP= calculate(counta('Table1'[GROUP]),Filter(Table1,Table1[GROUP]="A"))
Table:
GROUP | TYPE |
A | SR |
B | SR |
B | INC |
A | SR |
C | INC |
B | INC |
B | SR |
A | SR |
Thanks for all help 🙂
Solved! Go to Solution.
Hi @a10703 ,
You can add one more filter to your measure with &&.
calculate(counta('Table1'[GROUP]),Filter(Table1,Table1[GROUP]="A" && Table1[TYPE] = "SR"))
Hi @a10703 ,
You can add one more filter to your measure with &&.
calculate(counta('Table1'[GROUP]),Filter(Table1,Table1[GROUP]="A" && Table1[TYPE] = "SR"))
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
212 | |
49 | |
47 | |
45 | |
42 |
User | Count |
---|---|
260 | |
211 | |
103 | |
78 | |
64 |