Forum Discussion

Dougers1's avatar
Dougers1
Frequent Visitor
2 years ago
Solved

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 h...
  • Fowmy's avatar
    2 years ago

    Dougers1 

    Try this measure:

    	CALCULATE(
    		COUNTROWS('Export') ,
    		'Export'[Request Grade] = "BSL",
    		'Export'[status] = "filled"
    	)