The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have to write one measure which counts the number of Rows, but it should have two type of Filter.
Like the below image: We need count via Company wise. But should have 2 conditions
1. For company C1 and E1 we need check Cases number =1 and Admission = "N"
2. Rest of other company we need to check Case Number = 1
Can you please help me how I write measurer to calculate a count.
Solved! Go to Solution.
try this
Measure = VAR C1_E1_filter = FILTER('Table','Table'[Company] in {"C1","E1"} && 'Table'[Admission] = "N" && 'Table'[# Cases] =1) VAR C1_E1 = CALCULATE(COUNTROWS('Table'),C1_E1_filter) VAR Else_filter = FILTER('Table','Table'[Company]<>"C1" && 'Table'[Company]<>"E1" && 'Table'[Admission] = "N") VAR Else_value = CALCULATE(COUNTROWS('Table'),Else_filter) RETURN C1_E1+Else_value
try this
Measure = VAR C1_E1_filter = FILTER('Table','Table'[Company] in {"C1","E1"} && 'Table'[Admission] = "N" && 'Table'[# Cases] =1) VAR C1_E1 = CALCULATE(COUNTROWS('Table'),C1_E1_filter) VAR Else_filter = FILTER('Table','Table'[Company]<>"C1" && 'Table'[Company]<>"E1" && 'Table'[Admission] = "N") VAR Else_value = CALCULATE(COUNTROWS('Table'),Else_filter) RETURN C1_E1+Else_value
Thanks, it works...
User | Count |
---|---|
65 | |
61 | |
60 | |
53 | |
27 |
User | Count |
---|---|
181 | |
88 | |
70 | |
48 | |
46 |