Forum Discussion
Dougers1
2 years agoFrequent Visitor
need help with this dax
Hi
i have this measure that brings back the total count of BSL requests
BSL Total Requests = CALCULATE(COUNTROWS('Export') ,'Export'[Request Grade] = "BSL")
i need to also see many i have filled - the filled column is named status. what do i need to add so it checks the grade is BSl and then staus is filled
Dougers1
Try this measure:CALCULATE( COUNTROWS('Export') , 'Export'[Request Grade] = "BSL", 'Export'[status] = "filled" )