I'm trying to determine how many opportunities had a "same day turnaround."
I have a calculated column called "Days in queue" which is a datediff.
Then I wrote a measure: #SameDayTurn = CALCULATE(COUNTA('dpmgr vwJMWebSalesEngQueue'[OpportunityID]), 'dpmgr vwJMWebSalesEngQueue'[DaysInQueue] = 0) to count how many opportunities had a same day turnaround ( 0 days in queue).
To test the math, I created a table and filtered by the opps with same day turnaround. Problem is, the table isn't only showing Opportunities with "DaysinQueue = 0"
Am I missing something?